cd43915ce0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/criu/versions. These checks were done: - built on NixOS - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/compel -h` got 0 exit code - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/compel --help` got 0 exit code - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/criu -h` got 0 exit code - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/criu --help` got 0 exit code - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/criu -V` and found version 3.8.1 - ran `/nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1/bin/criu --version` and found version 3.8.1 - found 3.8.1 with grep in /nix/store/yqfshz1c0qp2h8vdcswiaknxb6ibxfsl-criu-3.8.1 - directory tree listing: https://gist.github.com/4324a1815464a7da41c4b8cd5056b1b7
47 lines
1.8 KiB
Nix
47 lines
1.8 KiB
Nix
{ stdenv, fetchurl, protobuf, protobufc, asciidoc
|
|
, xmlto, utillinux, docbook_xsl, libpaper, libnl, libcap, libnet, pkgconfig
|
|
, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "criu-${version}";
|
|
version = "3.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.openvz.org/criu/${name}.tar.bz2";
|
|
sha256 = "0csyhsc5d6wkcjyvsp6h9x8zxn3zk574s84gfmy3gjagv3nwqd51";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ pkgconfig docbook_xsl ];
|
|
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper libnl libcap libnet python ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
|
|
substituteInPlace ./Documentation/Makefile --replace "-m custom.xsl" "-m custom.xsl --skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
|
|
substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl.dev}/include/libnl3"
|
|
substituteInPlace ./Makefile --replace "head-name := \$(shell git tag -l v\$(CRIU_VERSION))" "head-name = ${version}.0"
|
|
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
|
|
'';
|
|
|
|
buildPhase = "make PREFIX=$out";
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
|
# dropping fortify here as well as package uses it by default:
|
|
# command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/etc/logrotate.d
|
|
make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Userspace checkpoint/restore for Linux";
|
|
homepage = https://criu.org;
|
|
license = licenses.gpl2;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.thoughtpolice ];
|
|
};
|
|
}
|