2019-04-29 16:10:05 +01:00
|
|
|
{ stdenv, lib, fetchurl, protobuf, protobufc, asciidoc, iptables
|
2018-07-21 01:44:44 +01:00
|
|
|
, xmlto, docbook_xsl, libpaper, libnl, libcap, libnet, pkgconfig
|
2019-04-29 16:10:05 +01:00
|
|
|
, which, python, makeWrapper, docbook_xml_dtd_45 }:
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "criu";
|
2019-09-26 12:00:22 +01:00
|
|
|
version = "3.13";
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://download.openvz.org/criu/${pname}-${version}.tar.bz2";
|
2019-09-26 12:00:22 +01:00
|
|
|
sha256 = "1yn9ix9lqvqvjrs3a3g6g1wqfniyf9n7giy0mr3jvijmrcm7y0pa";
|
2014-02-27 07:05:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2019-04-29 16:10:05 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig docbook_xsl which makeWrapper docbook_xml_dtd_45 ];
|
|
|
|
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper libnl libcap libnet python iptables ];
|
2014-02-27 07:05:20 +00:00
|
|
|
|
2017-11-28 08:11:08 +00:00
|
|
|
postPatch = ''
|
2014-05-07 21:55:33 +01:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
|
2017-10-14 14:45:35 +01:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "-m custom.xsl" "-m custom.xsl --skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
|
2016-04-16 18:37:26 +01:00
|
|
|
substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl.dev}/include/libnl3"
|
2017-10-14 14:45:35 +01:00
|
|
|
substituteInPlace ./Makefile --replace "head-name := \$(shell git tag -l v\$(CRIU_VERSION))" "head-name = ${version}.0"
|
2016-04-13 19:56:52 +01:00
|
|
|
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
|
2014-02-27 07:05:20 +00:00
|
|
|
'';
|
|
|
|
|
2019-04-29 16:10:05 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "ASCIIDOC=${asciidoc}/bin/asciidoc" "XMLTO=${xmlto}/bin/xmlto" ];
|
2016-02-10 23:09:09 +00:00
|
|
|
|
2019-04-29 16:10:05 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
# No idea why but configure scripts break otherwise.
|
|
|
|
export SHELL=""
|
|
|
|
'';
|
2016-02-26 17:38:15 +00:00
|
|
|
|
2017-10-14 14:45:35 +01:00
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
|
|
|
# dropping fortify here as well as package uses it by default:
|
|
|
|
# command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
2014-02-27 07:05:20 +00:00
|
|
|
|
2019-04-29 16:10:05 +01:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/criu \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ iptables ]}
|
2014-02-27 07:05:20 +00:00
|
|
|
'';
|
|
|
|
|
2016-03-18 22:39:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Userspace checkpoint/restore for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://criu.org";
|
2016-03-18 22:39:03 +00:00
|
|
|
license = licenses.gpl2;
|
2014-03-20 18:41:05 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2016-03-18 22:39:03 +00:00
|
|
|
maintainers = [ maintainers.thoughtpolice ];
|
2014-02-27 07:05:20 +00:00
|
|
|
};
|
|
|
|
}
|