forked from mirrors/nixpkgs
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 }:
|
||||
|
||||
assert stdenv.system == "x86_64-linux";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "criu-${version}";
|
||||
version = "1.2";
|
||||
|
@ -31,7 +32,7 @@ stdenv.mkDerivation rec {
|
|||
description = "userspace checkpoint/restore for Linux";
|
||||
homepage = "http://criu.org";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue