* Build the ISO from the modular branch. Don't bzip the ISO anymore

since it's already compressed using squashfs.

svn path=/nixos/branches/modular-nixos/; revision=16026
This commit is contained in:
Eelco Dolstra 2009-06-22 16:28:21 +00:00
parent ccdae5ed87
commit 27ad47bdac

View file

@ -55,12 +55,13 @@ let
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}"); version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
iso = (import "${nixosSrc}/installer/cd-dvd/rescue-cd.nix" { iso = (import lib/eval-config.nix {
platform = system; inherit system nixpkgs;
compressImage = true; configuration =
relName = "nixos-${version}"; { require = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
inherit nixpkgs; system.nixosVersion = version;
}).rescueCD; };
}).config.system.build.isoImage;
in in
# Declare the ISO as a build product so that it shows up in Hydra. # Declare the ISO as a build product so that it shows up in Hydra.