mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
bef1dc8bd5
svn path=/nixos/branches/modular-nixos/; revision=16515
101 lines
2.3 KiB
Nix
101 lines
2.3 KiB
Nix
{ nixpkgs ? ../nixpkgs-wc }:
|
|
|
|
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}");
|
|
|
|
iso = (import lib/eval-config.nix {
|
|
inherit system nixpkgs;
|
|
configuration =
|
|
{ require = module;
|
|
system.nixosVersion = version;
|
|
};
|
|
}).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}";
|
|
maintainers = [lib.maintainers.eelco];
|
|
};
|
|
}
|
|
''
|
|
ensureDir $out/nix-support
|
|
echo "file iso" ${iso}/iso/*.iso* >> $out/nix-support/hydra-build-products
|
|
''; # */
|
|
|
|
|
|
jobs = rec {
|
|
|
|
|
|
tarball =
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
, officialRelease ? false
|
|
}:
|
|
|
|
with import nixpkgs {};
|
|
|
|
releaseTools.makeSourceTarball {
|
|
name = "nixos-tarball";
|
|
|
|
version = builtins.readFile ./VERSION;
|
|
|
|
src = nixosSrc;
|
|
|
|
inherit officialRelease;
|
|
|
|
distPhase = ''
|
|
releaseName=nixos-$VERSION$VERSION_SUFFIX
|
|
ensureDir "$out/tarballs"
|
|
mkdir ../$releaseName
|
|
cp -prd . ../$releaseName
|
|
cd ..
|
|
tar cfvj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
''; # */
|
|
};
|
|
|
|
|
|
manual =
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
, officialRelease ? false
|
|
}:
|
|
|
|
import "${nixosSrc}/doc/manual" {
|
|
pkgs = import nixpkgs {};
|
|
};
|
|
|
|
|
|
iso_minimal = makeIso {
|
|
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
|
|
description = "minimal";
|
|
};
|
|
|
|
iso_rescue = makeIso {
|
|
module = ./modules/installer/cd-dvd/installation-cd-rescue.nix;
|
|
description = "rescue";
|
|
};
|
|
|
|
iso_graphical = makeIso {
|
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
|
description = "graphical";
|
|
};
|
|
|
|
|
|
};
|
|
|
|
|
|
in jobs
|