2014-08-10 08:40:17 +00:00
|
|
|
{ stdenv, fetchurl, protobuf, protobufc, asciidoc
|
2017-10-14 13:45:35 +00:00
|
|
|
, xmlto, utillinux, docbook_xsl, libpaper, libnl, libcap, libnet, pkgconfig
|
2016-04-13 18:56:52 +00:00
|
|
|
, python }:
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "criu-${version}";
|
2018-01-28 19:36:51 +00:00
|
|
|
version = "3.7";
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.openvz.org/criu/${name}.tar.bz2";
|
2018-01-28 19:36:51 +00:00
|
|
|
sha256 = "0qrpz7pvnks34v7d8lb73flz3mb7qwnib94pdwaxh0mskn8470fq";
|
2014-02-27 07:05:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2017-10-07 11:24:29 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig docbook_xsl ];
|
2017-10-14 13:45:35 +00:00
|
|
|
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper libnl libcap libnet python ];
|
2014-02-27 07:05:20 +00:00
|
|
|
|
2017-11-28 08:11:08 +00:00
|
|
|
postPatch = ''
|
2014-05-07 20:55:33 +00:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
|
2017-10-14 13:45:35 +00: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 17:37:26 +00:00
|
|
|
substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl.dev}/include/libnl3"
|
2017-10-14 13:45:35 +00:00
|
|
|
substituteInPlace ./Makefile --replace "head-name := \$(shell git tag -l v\$(CRIU_VERSION))" "head-name = ${version}.0"
|
2016-04-13 18:56:52 +00:00
|
|
|
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
|
2014-02-27 07:05:20 +00:00
|
|
|
'';
|
|
|
|
|
2016-08-02 15:52:51 +00:00
|
|
|
buildPhase = "make PREFIX=$out";
|
2016-02-10 23:09:09 +00:00
|
|
|
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
2016-02-26 17:38:15 +00:00
|
|
|
|
2017-10-14 13:45:35 +00: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
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/etc/logrotate.d
|
2014-03-20 19:01:57 +00:00
|
|
|
make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto
|
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";
|
|
|
|
homepage = https://criu.org;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|