2008-12-17 14:25:23 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
|
|
|
|
jobs = rec {
|
|
|
|
|
|
|
|
|
|
|
|
tarball =
|
|
|
|
{ nixosSrc ? {path = ./.; rev = 1234;}
|
|
|
|
, nixpkgs ? {path = ../nixpkgs-wc;}
|
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import nixpkgs.path {};
|
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-tarball";
|
|
|
|
src = nixosSrc;
|
|
|
|
inherit officialRelease;
|
|
|
|
|
|
|
|
distPhase = ''
|
|
|
|
releaseName=nixos-$(cat $src/VERSION)$VERSION_SUFFIX
|
|
|
|
ensureDir "$out/tarballs"
|
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
|
|
|
cd ..
|
|
|
|
tar cfvj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
manual =
|
|
|
|
{ nixosSrc ? {path = ./.; rev = 1234;}
|
|
|
|
, nixpkgs ? {path = ../nixpkgs-wc;}
|
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
import "${nixosSrc.path}/doc/manual" {
|
|
|
|
nixpkgsPath = nixpkgs.path;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
iso =
|
|
|
|
{ nixosSrc ? {path = ./.; rev = 1234;}
|
|
|
|
, nixpkgs ? {path = ../nixpkgs-wc;}
|
|
|
|
, officialRelease ? false
|
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
2008-12-17 15:43:14 +01:00
|
|
|
with import nixpkgs.path {inherit system;};
|
2008-12-17 14:25:23 +01:00
|
|
|
|
2008-12-17 15:30:43 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
iso = (import "${nixosSrc.path}/installer/cd-dvd/rescue-cd.nix" {
|
|
|
|
platform = system;
|
|
|
|
compressImage = true;
|
|
|
|
nixpkgsPath = nixpkgs.path;
|
2009-02-20 12:10:17 +01:00
|
|
|
relName = "nixos-${builtins.readFile ./VERSION}${if !officialRelease then "pre${toString nixosSrc.rev}" else ""}";
|
2008-12-17 15:30:43 +01:00
|
|
|
}).rescueCD;
|
|
|
|
|
|
|
|
in
|
|
|
|
# Declare the ISO as a build product so that it shows up in Hydra.
|
2008-12-17 15:43:14 +01:00
|
|
|
runCommand "nixos-iso"
|
|
|
|
{ meta = {
|
|
|
|
description = "NixOS installation CD ISO image for ${system}";
|
|
|
|
};
|
|
|
|
}
|
2008-12-17 15:30:43 +01:00
|
|
|
''
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo "file iso" ${iso}/iso/*.iso* >> $out/nix-support/hydra-build-products
|
|
|
|
''; # */
|
|
|
|
|
2008-12-17 14:25:23 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in jobs
|