2014-08-10 08:40:17 +00:00
|
|
|
{ stdenv, fetchurl, protobuf, protobufc, asciidoc
|
|
|
|
, xmlto, utillinux, docbook_xsl, libpaper }:
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "criu-${version}";
|
2014-05-07 20:55:33 +00:00
|
|
|
version = "1.3-rc1";
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.openvz.org/criu/${name}.tar.bz2";
|
2014-05-07 20:55:33 +00:00
|
|
|
sha256 = "00q3kyvaizg5x2zladj0mazmp69c9kg7nvlazcqf0w6bqp0y7sp0";
|
2014-02-27 07:05:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-08-10 08:40:17 +00:00
|
|
|
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper ];
|
2014-02-27 07:05:20 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
chmod +w ./scripts/gen-offsets.sh
|
|
|
|
substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump
|
2014-05-07 20:55:33 +00:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
|
2014-08-10 08:40:17 +00:00
|
|
|
substituteInPlace ./Documentation/Makefile --replace "--skip-validation" "--skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
|
2014-02-27 07:05:20 +00:00
|
|
|
'';
|
|
|
|
|
2014-05-07 20:55:33 +00:00
|
|
|
configurePhase = "make config PREFIX=$out";
|
|
|
|
buildPhase = "make PREFIX=$out";
|
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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "userspace checkpoint/restore for Linux";
|
|
|
|
homepage = "http://criu.org";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-03-20 18:41:05 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-02-27 07:05:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|