tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
patchutils: disable parallel build
FliegendeWurst
4 years ago
91b63fa2
a43431f3
+3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
patchutils
generic.nix
+3
pkgs/tools/text/patchutils/generic.nix
···
15
buildInputs = [ perl ] ++ extraBuildInputs;
16
hardeningDisable = [ "format" ];
17
0
0
0
18
postInstall = ''
19
for bin in $out/bin/{splitdiff,rediff,editdiff,dehtmldiff}; do
20
wrapProgram "$bin" \
···
15
buildInputs = [ perl ] ++ extraBuildInputs;
16
hardeningDisable = [ "format" ];
17
18
+
# tests fail when building in parallel
19
+
enableParallelBuilding = false;
20
+
21
postInstall = ''
22
for bin in $out/bin/{splitdiff,rediff,editdiff,dehtmldiff}; do
23
wrapProgram "$bin" \