Merge pull request #60828 from matthewbauer/mark-bad-platforms
Mark some bad platforms
This commit is contained in:
commit
69cf07ec0f
@ -28,7 +28,11 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://github.com/seccomp/libseccomp";
|
homepage = "https://github.com/seccomp/libseccomp";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
badPlatforms = platforms.riscv;
|
badPlatforms = [
|
||||||
|
"alpha-linux"
|
||||||
|
"riscv64-linux" "riscv32-linux"
|
||||||
|
"sparc-linux" "sparc64-linux"
|
||||||
|
];
|
||||||
maintainers = with maintainers; [ thoughtpolice ];
|
maintainers = with maintainers; [ thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -91,5 +91,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
badPlatforms = [
|
||||||
|
"armv5tel-linux" "armv6l-linux" "armv6m-linux"
|
||||||
|
"sparc-linux" "sparc64-linux"
|
||||||
|
"riscv32-linux" "riscv64-linux"
|
||||||
|
"alpha-linux"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,10 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://horms.net/projects/kexec/kexec-tools;
|
homepage = http://horms.net/projects/kexec/kexec-tools;
|
||||||
description = "Tools related to the kexec Linux feature";
|
description = "Tools related to the kexec Linux feature";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
badPlatforms = [
|
||||||
|
"riscv64-linux" "riscv32-linux"
|
||||||
|
"sparc-linux" "sparc64-linux"
|
||||||
|
];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
badPlatforms = platforms.riscv;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user