mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
criu: version 1.2
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
05c19ced9b
commit
47b35d5e80
37
pkgs/os-specific/linux/criu/default.nix
Normal file
37
pkgs/os-specific/linux/criu/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -6521,6 +6521,8 @@ let
|
||||
|
||||
cryopid = callPackage ../os-specific/linux/cryopid { };
|
||||
|
||||
criu = callPackage ../os-specific/linux/criu { };
|
||||
|
||||
cryptsetup = callPackage ../os-specific/linux/cryptsetup { };
|
||||
|
||||
cramfsswap = callPackage ../os-specific/linux/cramfsswap { };
|
||||
|
Loading…
Reference in New Issue
Block a user