nixpkgs/release.nix

81 lines
1.8 KiB
Nix
Raw Normal View History

2009-03-09 21:10:53 +00:00
{ nixpkgs ? ../nixpkgs-wc }:
let
jobs = rec {
tarball =
2009-03-09 21:10:53 +00:00
{ nixosSrc ? {outPath = ./.; rev = 1234;}
, officialRelease ? false
}:
2009-03-09 21:10:53 +00:00
with import nixpkgs {};
releaseTools.makeSourceTarball {
name = "nixos-tarball";
version = builtins.readFile ./VERSION;
src = nixosSrc;
inherit officialRelease;
distPhase = ''
releaseName=nixos-$VERSION
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;}
, officialRelease ? false
}:
2009-03-09 21:11:17 +00:00
import "${nixosSrc}/doc/manual" {
inherit nixpkgs;
};
iso =
2009-03-09 21:12:46 +00:00
{ nixosSrc ? {outPath = ./.; rev = 1234;}
, officialRelease ? false
, system ? "i686-linux"
}:
2009-03-09 21:10:53 +00:00
with import nixpkgs {inherit system;};
2008-12-17 14:30:43 +00:00
let
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
2009-03-09 21:11:17 +00:00
iso = (import "${nixosSrc}/installer/cd-dvd/rescue-cd.nix" {
2008-12-17 14:30:43 +00:00
platform = system;
compressImage = true;
relName = "nixos-${version}";
inherit nixpkgs;
2008-12-17 14:30:43 +00:00
}).rescueCD;
in
# Declare the ISO as a build product so that it shows up in Hydra.
runCommand "nixos-iso-${version}"
2008-12-17 14:43:14 +00:00
{ meta = {
description = "NixOS installation CD ISO image for ${system}";
};
}
2008-12-17 14:30:43 +00:00
''
ensureDir $out/nix-support
echo "file iso" ${iso}/iso/*.iso* >> $out/nix-support/hydra-build-products
''; # */
};
in jobs