summary refs log tree commit diff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2017-12-23 03:02:08 +0100
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-23 04:31:11 +0200
commitc7f1aa38047bef88a6c32b9cbde1502bf7266530 (patch)
tree56d01c3296f8e32be747881186271117dd481335 /pkgs/misc/uboot
parentbae218e7b5d278ceeb8f7fd72a3dad9142b98daf (diff)
downloadnixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar.gz
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar.bz2
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar.lz
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar.xz
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.tar.zst
nixpkgs-c7f1aa38047bef88a6c32b9cbde1502bf7266530.zip
buildUboot: add openssl to nativeBuildInputs
required by tools/kwbimage.c, tools/mxsimage.c and in various other
places too.
As those are tools running on the host, it's a nativeBuildInput.
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 8fea1018d09..1bfcea1057e 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, bc, dtc, python2
+{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2
 , hostPlatform
 }:
 
@@ -43,7 +43,7 @@ let
       patchShebangs tools
     '';
 
-    nativeBuildInputs = [ bc dtc python2 ];
+    nativeBuildInputs = [ bc dtc openssl python2 ];
 
     hardeningDisable = [ "all" ];