summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/dtc
diff options
context:
space:
mode:
authortnias <phil@grmr.de>2021-04-09 02:02:36 +0200
committerGitHub <noreply@github.com>2021-04-09 02:02:36 +0200
commit01cf5e4d680cdd1c67907c28a06b3ac07ccd9a51 (patch)
tree90664d69dd5798293d7794d81bc49f82996789a2 /pkgs/development/compilers/dtc
parent1d6d0e59a55e440983db6aa33973441e3b79b007 (diff)
dtc: add yaml support and enable tests (#118700)
Diffstat (limited to 'pkgs/development/compilers/dtc')
-rw-r--r--pkgs/development/compilers/dtc/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/compilers/dtc/default.nix b/pkgs/development/compilers/dtc/default.nix
index 245e5bf2f540..ac1acfe4b8f1 100644
--- a/pkgs/development/compilers/dtc/default.nix
+++ b/pkgs/development/compilers/dtc/default.nix
@@ -1,9 +1,7 @@
{ stdenv, lib, fetchgit, flex, bison, pkg-config, which
-, pythonSupport ? false, python ? null, swig
+, pythonSupport ? false, python, swig, libyaml
}:
-assert pythonSupport -> python != null;
-
stdenv.mkDerivation rec {
pname = "dtc";
version = "1.6.0";
@@ -14,6 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0li992wwd7kgy71bikanqky49y4hq3p3vx35p2hvyxy1k0wfy7i8";
};
+ buildInputs = [ libyaml ];
nativeBuildInputs = [ flex bison pkg-config which ] ++ lib.optionals pythonSupport [ python swig ];
postPatch = ''
@@ -23,10 +22,12 @@ stdenv.mkDerivation rec {
makeFlags = [ "PYTHON=python" ];
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
+ doCheck = true;
+
meta = with 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
+ license = licenses.gpl2Plus; # dtc itself is GPLv2, libfdt is dual GPL/BSD
maintainers = [ maintainers.dezgeg ];
platforms = platforms.unix;
};