2021-01-19 07:50:56 +01:00
|
|
|
{ stdenv, lib, fetchgit, flex, bison, pkg-config, which
|
2021-07-27 15:36:13 +02:00
|
|
|
, pythonSupport ? false, python ? null, swig, libyaml
|
2019-09-11 15:07:31 +02:00
|
|
|
}:
|
2015-06-08 00:13:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-19 03:00:58 +01:00
|
|
|
pname = "dtc";
|
2021-08-23 12:45:14 +02:00
|
|
|
version = "1.6.1";
|
2015-06-08 00:13:44 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-03-13 14:11:15 +01:00
|
|
|
url = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git";
|
2015-06-08 00:13:44 +02:00
|
|
|
rev = "refs/tags/v${version}";
|
2021-08-23 12:45:14 +02:00
|
|
|
sha256 = "sha256-gx9LG3U9etWhPxm7Ox7rOu9X5272qGeHqZtOe68zFs4=";
|
2015-06-08 00:13:44 +02:00
|
|
|
};
|
|
|
|
|
2021-04-09 02:02:36 +02:00
|
|
|
buildInputs = [ libyaml ];
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ flex bison pkg-config which ] ++ lib.optionals pythonSupport [ python swig ];
|
2015-06-08 00:13:44 +02:00
|
|
|
|
2017-11-07 01:05:06 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs pylibfdt/
|
|
|
|
'';
|
|
|
|
|
2019-09-22 03:23:48 +02:00
|
|
|
makeFlags = [ "PYTHON=python" ];
|
2017-11-07 01:05:06 +01:00
|
|
|
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
|
2015-06-08 00:13:44 +02:00
|
|
|
|
2021-07-24 16:59:36 +02:00
|
|
|
# Checks are broken on aarch64 darwin
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/118700#issuecomment-885892436
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2021-04-09 02:02:36 +02:00
|
|
|
|
2019-09-11 15:07:31 +02:00
|
|
|
meta = with lib; {
|
2015-06-08 00:13:44 +02:00
|
|
|
description = "Device Tree Compiler";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://git.kernel.org/cgit/utils/dtc/dtc.git";
|
2021-04-09 02:02:36 +02:00
|
|
|
license = licenses.gpl2Plus; # dtc itself is GPLv2, libfdt is dual GPL/BSD
|
2015-06-08 00:13:44 +02:00
|
|
|
maintainers = [ maintainers.dezgeg ];
|
2016-02-03 03:25:54 +01:00
|
|
|
platforms = platforms.unix;
|
2015-06-08 00:13:44 +02:00
|
|
|
};
|
|
|
|
}
|