38 lines
994 B
Nix
38 lines
994 B
Nix
|
{ stdenv, fetchurl, protobuf, protobufc, asciidoc, xmlto, utillinux }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "criu-${version}";
|
||
|
version = "1.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://download.openvz.org/criu/${name}.tar.bz2";
|
||
|
sha256 = "04xlnqvgbjd5wfmi97m5rr76a3agkz8g96hdyzhc6x8gd52bbg9y";
|
||
|
};
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
buildInputs = [ protobuf protobufc asciidoc xmlto ];
|
||
|
|
||
|
patchPhase = ''
|
||
|
chmod +w ./scripts/gen-offsets.sh
|
||
|
substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump
|
||
|
'';
|
||
|
|
||
|
buildPhase = ''
|
||
|
make config PREFIX=$out
|
||
|
make PREFIX=$out
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/etc/logrotate.d
|
||
|
make install PREFIX=$out LIBDIR=$out/lib
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "userspace checkpoint/restore for Linux";
|
||
|
homepage = "http://criu.org";
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||
|
};
|
||
|
}
|