tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
criu: remove stale substituteInPlace
Sandro Jäckel
5 years ago
a5f156fd
879c3b9e
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
criu
default.nix
+3
-3
pkgs/os-specific/linux/criu/default.nix
···
17
17
propagatedBuildInputs = with python3.pkgs; [ python python3.pkgs.protobuf ];
18
18
19
19
postPatch = ''
20
20
-
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
21
21
-
substituteInPlace ./Documentation/Makefile --replace "-m custom.xsl" "-m custom.xsl --skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
22
22
-
substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl.dev}/include/libnl3"
20
20
+
substituteInPlace ./Documentation/Makefile \
21
21
+
--replace "2>/dev/null" "" \
22
22
+
--replace "-m custom.xsl" "-m custom.xsl --skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
23
23
substituteInPlace ./Makefile --replace "head-name := \$(shell git tag -l v\$(CRIU_VERSION))" "head-name = ${version}.0"
24
24
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
25
25
'';