summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/dtc
diff options
context:
space:
mode:
authorBastian Köcher <git@kchr.de>2019-03-15 09:39:30 +0100
committerBastian Köcher <git@kchr.de>2019-03-15 09:39:30 +0100
commite6d4f0a4a9120613bc5070fc418b1b5fab189454 (patch)
treefd967d38f84b12c2618745a0e78473bca1deae16 /pkgs/development/compilers/dtc
parent93ce3df6b51d19afded3b50d99d7e88912cbc810 (diff)
dtc: 1.4.7 -> 1.5.0
Diffstat (limited to 'pkgs/development/compilers/dtc')
-rw-r--r--pkgs/development/compilers/dtc/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/development/compilers/dtc/default.nix b/pkgs/development/compilers/dtc/default.nix
index 9cc60003201c..ea305cc5c84c 100644
--- a/pkgs/development/compilers/dtc/default.nix
+++ b/pkgs/development/compilers/dtc/default.nix
@@ -1,25 +1,18 @@
-{ stdenv, fetchgit, fetchpatch, flex, bison, pkgconfig, python2, swig, which }:
+{ stdenv, fetchgit, flex, bison, pkgconfig, python2, swig, which }:
stdenv.mkDerivation rec {
pname = "dtc";
- version = "1.4.7";
+ version = "1.5.0";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git";
rev = "refs/tags/v${version}";
- sha256 = "0l787g1wmd4d6izsp91m5r2qms2h2jg2hhzllfi9qkbnplyz21wn";
+ sha256 = "075gj8bbahfdb8dlif3d2dpzjrkyf3bwbcmx96zpwhlgs0da8jxh";
};
nativeBuildInputs = [ flex bison pkgconfig swig which ];
buildInputs = [ python2 ];
- patches = [
- # Fix setup.py
- (fetchpatch {
- url = "https://github.com/dezgeg/dtc/commit/d94a745148ba5c9198143ccc0f7d877fe498ab73.patch";
- sha256 = "0hpryx04j1swvmjisrfhvss08zzz4nxz9iv72lp4jdgg6vg0argl";
- })
- ];
postPatch = ''
patchShebangs pylibfdt/
'';