prl-tools: add libelf input

fixes build on 18.03

+2 -1
+2 -1
pkgs/os-specific/linux/prl-tools/default.nix
··· 2 , gawk, utillinux, xorg, glib, dbus-glib, zlib 3 , kernel ? null, libsOnly ? false 4 , undmg, fetchurl 5 }: 6 7 assert (!libsOnly) -> kernel != null; ··· 27 hardeningDisable = [ "pic" "format" ]; 28 29 # also maybe python2 to generate xorg.conf 30 - nativeBuildInputs = [ p7zip undmg ] ++ lib.optionals (!libsOnly) [ makeWrapper ]; 31 32 inherit libsOnly; 33
··· 2 , gawk, utillinux, xorg, glib, dbus-glib, zlib 3 , kernel ? null, libsOnly ? false 4 , undmg, fetchurl 5 + , libelf 6 }: 7 8 assert (!libsOnly) -> kernel != null; ··· 28 hardeningDisable = [ "pic" "format" ]; 29 30 # also maybe python2 to generate xorg.conf 31 + nativeBuildInputs = [ p7zip undmg libelf ] ++ lib.optionals (!libsOnly) [ makeWrapper ]; 32 33 inherit libsOnly; 34