criu: only supported on 64-bit
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
d5799cd64f
commit
7dcf9f6907
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, protobuf, protobufc, asciidoc, xmlto, utillinux }:
|
{ stdenv, fetchurl, protobuf, protobufc, asciidoc, xmlto, utillinux }:
|
||||||
|
|
||||||
|
assert stdenv.system == "x86_64-linux";
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "criu-${version}";
|
name = "criu-${version}";
|
||||||
version = "1.2";
|
version = "1.2";
|
||||||
@ -31,7 +32,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "userspace checkpoint/restore for Linux";
|
description = "userspace checkpoint/restore for Linux";
|
||||||
homepage = "http://criu.org";
|
homepage = "http://criu.org";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user