prl-tools: add libelf input

fixes build on 18.03

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