1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00

Set assertions requiring specific systems for some system tarballs.

svn path=/nixos/branches/stdenv-updates/; revision=24154
This commit is contained in:
Lluís Batlle i Rossell 2010-10-07 21:16:05 +00:00
parent 3c6e5ef88e
commit 7eb7abdfd2

View file

@ -135,11 +135,15 @@ let
module = ./modules/installer/cd-dvd/system-tarball-pc.nix;
};
system_tarball_fuloong2f = makeSystemTarball {
system_tarball_fuloong2f =
assert builtins.currentSystem == "mips64-linux";
makeSystemTarball {
module = ./modules/installer/cd-dvd/system-tarball-fuloong2f.nix;
} { system = "mips64-linux"; };
system_tarball_sheevaplug = makeSystemTarball {
system_tarball_sheevaplug =
assert builtins.currentSystem == "armv5tel-linux";
makeSystemTarball {
module = ./modules/installer/cd-dvd/system-tarball-sheevaplug.nix;
} { system = "armv5tel-linux"; };