3
0
Fork 0
forked from mirrors/nixpkgs

prl-tools: add libelf input

fixes build on 18.03
This commit is contained in:
Luke Adams 2018-03-01 16:55:38 -06:00
parent 2c5efdbec4
commit ae7fae71ed

View file

@ -2,6 +2,7 @@
, gawk, utillinux, xorg, glib, dbus-glib, zlib
, kernel ? null, libsOnly ? false
, undmg, fetchurl
, libelf
}:
assert (!libsOnly) -> kernel != null;
@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "pic" "format" ];
# also maybe python2 to generate xorg.conf
nativeBuildInputs = [ p7zip undmg ] ++ lib.optionals (!libsOnly) [ makeWrapper ];
nativeBuildInputs = [ p7zip undmg libelf ] ++ lib.optionals (!libsOnly) [ makeWrapper ];
inherit libsOnly;