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