2017-11-07 01:05:06 +01:00
|
|
|
{ stdenv, fetchgit, fetchpatch, flex, bison, pkgconfig, python2, swig, which }:
|
2015-06-08 00:13:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "dtc-${version}";
|
2018-12-21 03:48:13 +01:00
|
|
|
version = "1.4.7";
|
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}";
|
2018-12-21 03:48:13 +01:00
|
|
|
sha256 = "0l787g1wmd4d6izsp91m5r2qms2h2jg2hhzllfi9qkbnplyz21wn";
|
2015-06-08 00:13:44 +02:00
|
|
|
};
|
|
|
|
|
2017-11-07 01:05:06 +01:00
|
|
|
nativeBuildInputs = [ flex bison pkgconfig swig which ];
|
|
|
|
buildInputs = [ python2 ];
|
2015-06-08 00:13:44 +02:00
|
|
|
|
2017-11-07 01:05:06 +01:00
|
|
|
patches = [
|
|
|
|
# Fix setup.py
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/dezgeg/dtc/commit/d94a745148ba5c9198143ccc0f7d877fe498ab73.patch";
|
|
|
|
sha256 = "0hpryx04j1swvmjisrfhvss08zzz4nxz9iv72lp4jdgg6vg0argl";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs pylibfdt/
|
|
|
|
'';
|
|
|
|
|
|
|
|
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
|
2015-06-08 00:13:44 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|