2019-09-11 14:07:31 +01:00
|
|
|
{ stdenv, lib, fetchgit, flex, bison, pkgconfig, which
|
2019-12-25 07:29:14 +00:00
|
|
|
, pythonSupport ? false, python, swig
|
2019-09-11 14:07:31 +01:00
|
|
|
}:
|
2015-06-07 23:13:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-19 02:00:58 +00:00
|
|
|
pname = "dtc";
|
2020-05-25 15:38:07 +01:00
|
|
|
version = "1.6.0";
|
2015-06-07 23:13:44 +01: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 23:13:44 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2020-05-25 15:38:07 +01:00
|
|
|
sha256 = "0li992wwd7kgy71bikanqky49y4hq3p3vx35p2hvyxy1k0wfy7i8";
|
2015-06-07 23:13:44 +01:00
|
|
|
};
|
|
|
|
|
2019-09-22 02:23:48 +01:00
|
|
|
nativeBuildInputs = [ flex bison pkgconfig which ] ++ lib.optionals pythonSupport [ python swig ];
|
|
|
|
buildInputs = lib.optionals pythonSupport [ python ];
|
2015-06-07 23:13:44 +01:00
|
|
|
|
2017-11-07 00:05:06 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs pylibfdt/
|
|
|
|
'';
|
|
|
|
|
2019-09-22 02:23:48 +01:00
|
|
|
makeFlags = [ "PYTHON=python" ];
|
2017-11-07 00:05:06 +00:00
|
|
|
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
|
2015-06-07 23:13:44 +01:00
|
|
|
|
2019-09-11 14:07:31 +01:00
|
|
|
meta = with lib; {
|
2015-06-07 23:13:44 +01:00
|
|
|
description = "Device Tree Compiler";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://git.kernel.org/cgit/utils/dtc/dtc.git";
|
2015-06-07 23:13:44 +01:00
|
|
|
license = licenses.gpl2; # dtc itself is GPLv2, libfdt is dual GPL/BSD
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
2016-02-03 02:25:54 +00:00
|
|
|
platforms = platforms.unix;
|
2015-06-07 23:13:44 +01:00
|
|
|
};
|
|
|
|
}
|