2019-09-11 15:07:31 +02:00
|
|
|
{ stdenv, lib, fetchgit, flex, bison, pkgconfig, which
|
|
|
|
, pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform, python2, swig
|
|
|
|
}:
|
2015-06-08 00:13:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-19 03:00:58 +01:00
|
|
|
pname = "dtc";
|
2019-03-15 09:39:30 +01:00
|
|
|
version = "1.5.0";
|
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}";
|
2019-03-15 09:39:30 +01:00
|
|
|
sha256 = "075gj8bbahfdb8dlif3d2dpzjrkyf3bwbcmx96zpwhlgs0da8jxh";
|
2015-06-08 00:13:44 +02:00
|
|
|
};
|
|
|
|
|
2019-09-11 15:07:31 +02:00
|
|
|
nativeBuildInputs = [ flex bison pkgconfig which ] ++ lib.optionals pythonSupport [ python2 swig ];
|
|
|
|
buildInputs = lib.optionals pythonSupport [ python2 ];
|
2015-06-08 00:13:44 +02:00
|
|
|
|
2017-11-07 01:05:06 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs pylibfdt/
|
|
|
|
'';
|
|
|
|
|
2019-09-11 15:07:31 +02:00
|
|
|
makeFlags = lib.optionals (!pythonSupport) [ "NO_PYTHON=1" ];
|
2017-11-07 01:05:06 +01:00
|
|
|
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
|
2015-06-08 00:13:44 +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";
|
|
|
|
homepage = https://git.kernel.org/cgit/utils/dtc/dtc.git;
|
|
|
|
license = licenses.gpl2; # dtc itself is GPLv2, libfdt is dual GPL/BSD
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
2016-02-03 03:25:54 +01:00
|
|
|
platforms = platforms.unix;
|
2015-06-08 00:13:44 +02:00
|
|
|
};
|
|
|
|
}
|