aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix
new file mode 100644
index 000000000000..462658396c8a
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/criu/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, lib, fetchurl, protobuf, protobufc, asciidoc, iptables
+, xmlto, docbook_xsl, libpaper, libnl, libcap, libnet, pkgconfig
+, which, python, makeWrapper, docbook_xml_dtd_45 }:
+
+stdenv.mkDerivation rec {
+ pname = "criu";
+ version = "3.14";
+
+ src = fetchurl {
+ url = "https://download.openvz.org/criu/${pname}-${version}.tar.bz2";
+ sha256 = "1jrr3v99g18gc0hriz0avq6ccdvyya0j6wwz888sdsc4icc30gzn";
+ };
+
+ enableParallelBuilding = true;
+ nativeBuildInputs = [ pkgconfig docbook_xsl which makeWrapper docbook_xml_dtd_45 ];
+ buildInputs = [ protobuf protobufc asciidoc xmlto libpaper libnl libcap libnet python iptables ];
+
+ 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
+ '';
+
+ makeFlags = [ "PREFIX=$(out)" "ASCIIDOC=${asciidoc}/bin/asciidoc" "XMLTO=${xmlto}/bin/xmlto" ];
+
+ outputs = [ "out" "dev" "man" ];
+
+ preBuild = ''
+ # No idea why but configure scripts break otherwise.
+ export SHELL=""
+ '';
+
+ hardeningDisable = [ "stackprotector" "fortify" ];
+ # dropping fortify here as well as package uses it by default:
+ # command-line>:0:0: error: "_FORTIFY_SOURCE" redefined [-Werror]
+
+ postFixup = ''
+ wrapProgram $out/bin/criu \
+ --prefix PATH : ${lib.makeBinPath [ iptables ]}
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Userspace checkpoint/restore for Linux";
+ homepage = "https://criu.org";
+ license = licenses.gpl2;
+ platforms = [ "x86_64-linux" ];
+ maintainers = [ maintainers.thoughtpolice ];
+ };
+}