2014-08-10 10:40:17 +02:00
|
|
|
{ stdenv, fetchurl, protobuf, protobufc, asciidoc
|
|
|
|
, xmlto, utillinux, docbook_xsl, libpaper }:
|
2014-02-27 08:05:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "criu-${version}";
|
2014-08-11 20:49:54 +02:00
|
|
|
version = "1.3-rc2";
|
2014-02-27 08:05:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.openvz.org/criu/${name}.tar.bz2";
|
2014-08-11 20:49:54 +02:00
|
|
|
sha256 = "1h9ii91aq8cja22j3520vg3qb3y9h6c064s4115s2ldylm8jmi0s";
|
2014-02-27 08:05:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-08-10 10:40:17 +02:00
|
|
|
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper ];
|
2014-02-27 08:05:20 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
chmod +w ./scripts/gen-offsets.sh
|
|
|
|
substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump
|
2014-05-07 22:55:33 +02:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
|
2014-08-10 10:40:17 +02:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "--skip-validation" "--skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
|
2014-02-27 08:05:20 +01:00
|
|
|
'';
|
|
|
|
|
2014-05-07 22:55:33 +02:00
|
|
|
configurePhase = "make config PREFIX=$out";
|
|
|
|
buildPhase = "make PREFIX=$out";
|
2014-02-27 08:05:20 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/etc/logrotate.d
|
2014-03-20 20:01:57 +01:00
|
|
|
make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto
|
2014-02-27 08:05:20 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "userspace checkpoint/restore for Linux";
|
|
|
|
homepage = "http://criu.org";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-03-20 19:41:05 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-02-27 08:05:20 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|