2009-08-27 11:57:43 +00:00
|
|
|
{ nixpkgs ? ../nixpkgs }:
|
2009-03-09 21:10:53 +00:00
|
|
|
|
2009-06-24 09:14:28 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
|
|
|
|
makeIso =
|
|
|
|
{ module, description }:
|
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
|
|
, officialRelease ? false
|
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import nixpkgs {inherit system;};
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
|
|
|
|
|
2009-08-27 11:57:43 +00:00
|
|
|
versionModule = { system.nixosVersion = version; };
|
|
|
|
|
2009-06-24 09:14:28 +00:00
|
|
|
iso = (import lib/eval-config.nix {
|
2009-08-27 11:57:43 +00:00
|
|
|
inherit system nixpkgs;
|
|
|
|
modules = [ module versionModule ];
|
2009-06-24 09:14:28 +00:00
|
|
|
}).config.system.build.isoImage;
|
|
|
|
|
|
|
|
in
|
|
|
|
# Declare the ISO as a build product so that it shows up in Hydra.
|
|
|
|
runCommand "nixos-iso-${version}"
|
|
|
|
{ meta = {
|
|
|
|
description = "NixOS installation CD (${description}) - ISO image for ${system}";
|
2009-07-09 11:57:20 +00:00
|
|
|
maintainers = [lib.maintainers.eelco];
|
2009-06-24 09:14:28 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
''
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo "file iso" ${iso}/iso/*.iso* >> $out/nix-support/hydra-build-products
|
|
|
|
''; # */
|
2008-12-17 13:25:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
jobs = rec {
|
|
|
|
|
|
|
|
|
|
|
|
tarball =
|
2009-03-09 21:10:53 +00:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 13:25:23 +00:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2009-03-09 21:10:53 +00:00
|
|
|
with import nixpkgs {};
|
2008-12-17 13:25:23 +00:00
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-tarball";
|
2009-03-06 14:11:05 +00:00
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION;
|
|
|
|
|
2008-12-17 13:25:23 +00:00
|
|
|
src = nixosSrc;
|
2009-03-06 14:11:05 +00:00
|
|
|
|
2008-12-17 13:25:23 +00:00
|
|
|
inherit officialRelease;
|
|
|
|
|
|
|
|
distPhase = ''
|
2009-03-25 20:12:44 +00:00
|
|
|
releaseName=nixos-$VERSION$VERSION_SUFFIX
|
2008-12-17 13:25:23 +00:00
|
|
|
ensureDir "$out/tarballs"
|
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
|
|
|
cd ..
|
|
|
|
tar cfvj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
manual =
|
2009-03-09 21:12:46 +00:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 13:25:23 +00:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2009-03-09 21:11:17 +00:00
|
|
|
import "${nixosSrc}/doc/manual" {
|
2009-06-22 16:06:11 +00:00
|
|
|
pkgs = import nixpkgs {};
|
2009-08-27 11:57:43 +00:00
|
|
|
optionDeclarations =
|
|
|
|
(import lib/eval-config.nix {
|
|
|
|
inherit nixpkgs;
|
|
|
|
modules = [ ];
|
|
|
|
}).optionDeclarations;
|
2008-12-17 13:25:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-24 09:14:28 +00:00
|
|
|
iso_minimal = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
|
|
|
|
description = "minimal";
|
|
|
|
};
|
|
|
|
|
2009-07-16 09:22:40 +00:00
|
|
|
iso_rescue = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-rescue.nix;
|
2009-07-30 04:20:56 +00:00
|
|
|
description = "rescue";
|
2009-07-16 09:22:40 +00:00
|
|
|
};
|
|
|
|
|
2009-06-24 09:14:28 +00:00
|
|
|
iso_graphical = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
|
|
|
description = "graphical";
|
|
|
|
};
|
|
|
|
|
2008-12-17 13:25:23 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-04-08 14:01:16 +00:00
|
|
|
in jobs
|