nixpkgs/pkgs/os-specific/linux/criu/default.nix

54 lines
2.1 KiB
Nix
Raw Normal View History

2014-08-10 08:40:17 +00:00
{ stdenv, fetchurl, protobuf, protobufc, asciidoc
2017-10-14 13:45:35 +00:00
, xmlto, utillinux, docbook_xsl, libpaper, libnl, libcap, libnet, pkgconfig
2016-04-13 18:56:52 +00:00
, python }:
stdenv.mkDerivation rec {
name = "criu-${version}";
2017-10-14 13:45:35 +00:00
version = "2.12.1";
src = fetchurl {
url = "http://download.openvz.org/criu/${name}.tar.bz2";
2017-10-14 13:45:35 +00:00
sha256 = "18m0sjgcfvzc86w49fd3kxw145nmrsvc5w7zf42nxdiklmszbr1k";
};
2017-11-28 08:11:08 +00:00
patches = [ ./criu-2.12.1-glibc-2.26.patch ];
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig docbook_xsl ];
2017-10-14 13:45:35 +00:00
buildInputs = [ protobuf protobufc asciidoc xmlto libpaper libnl libcap libnet python ];
2017-11-28 08:11:08 +00:00
postPatch = ''
chmod +w ./scripts/gen-offsets.sh
substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
2017-10-14 13:45:35 +00:00
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"
2017-10-14 13:45:35 +00:00
substituteInPlace ./Makefile --replace "head-name := \$(shell git tag -l v\$(CRIU_VERSION))" "head-name = ${version}.0"
2016-04-13 18:56:52 +00:00
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
2017-02-21 17:20:28 +00:00
# Avoid a glibc >= 2.25 deprecation warning that gets fatal via -Werror.
sed 1i'#include <sys/sysmacros.h>' -i criu/include/util.h
'';
buildPhase = "make PREFIX=$out";
makeFlags = "PREFIX=$(out)";
2017-10-14 13:45:35 +00:00
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 ];
};
}