3
0
Fork 0
forked from mirrors/nixpkgs

kexectools: mark bad platforms

This commit is contained in:
Matthew Bauer 2019-05-02 21:30:32 -04:00
parent efd44a3a7a
commit b7950c560a

View file

@ -22,7 +22,10 @@ stdenv.mkDerivation rec {
homepage = http://horms.net/projects/kexec/kexec-tools;
description = "Tools related to the kexec Linux feature";
platforms = platforms.linux;
badPlatforms = [
"riscv64-linux" "riscv32-linux"
"sparc-linux" "sparc64-linux"
];
license = licenses.gpl2;
badPlatforms = platforms.riscv;
};
}