tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
prl-tools: add libelf input
fixes build on 18.03
Luke Adams
8 years ago
ae7fae71
2c5efdbe
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
prl-tools
default.nix
+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
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
30
-
nativeBuildInputs = [ p7zip undmg ] ++ lib.optionals (!libsOnly) [ makeWrapper ];
31
31
+
nativeBuildInputs = [ p7zip undmg libelf ] ++ lib.optionals (!libsOnly) [ makeWrapper ];
31
32
32
33
inherit libsOnly;
33
34