2012-02-23 04:00:05 -08:00
|
|
|
let
|
|
|
|
|
|
|
|
|
|
|
|
makeIso =
|
|
|
|
{ module, type, description ? type, maintainers ? ["eelco"] }:
|
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
|
|
, officialRelease ? false
|
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
2012-03-04 12:57:34 -08:00
|
|
|
with <nixpkgs> {inherit system;};
|
2012-02-23 04:00:05 -08:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
|
|
|
|
|
|
|
|
versionModule =
|
|
|
|
{ system.nixosVersion = version;
|
|
|
|
isoImage.isoBaseName = "nixos-${type}";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = (import lib/eval-config.nix {
|
2012-03-04 12:57:34 -08:00
|
|
|
inherit system;
|
2012-02-23 04:00:05 -08:00
|
|
|
modules = [ module versionModule ];
|
|
|
|
}).config;
|
|
|
|
|
|
|
|
iso = 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 = map (x: lib.getAttr x lib.maintainers) maintainers;
|
|
|
|
};
|
|
|
|
inherit iso;
|
|
|
|
passthru = { inherit config; };
|
|
|
|
}
|
|
|
|
''
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
echo "file iso" $iso/iso/*.iso* >> $out/nix-support/hydra-build-products
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
|
|
|
|
makeSystemTarball =
|
|
|
|
{ module, maintainers ? ["viric"]}:
|
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
|
|
, officialRelease ? false
|
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
2012-03-04 12:57:34 -08:00
|
|
|
with import <nixpkgs> {inherit system;};
|
2012-02-23 04:00:05 -08:00
|
|
|
let
|
|
|
|
version = builtins.readFile ./VERSION + (if officialRelease then "" else "pre${toString nixosSrc.rev}");
|
|
|
|
|
|
|
|
versionModule = { system.nixosVersion = version; };
|
|
|
|
|
|
|
|
config = (import lib/eval-config.nix {
|
2012-03-04 12:57:34 -08:00
|
|
|
inherit system;
|
2012-02-23 04:00:05 -08:00
|
|
|
modules = [ module versionModule ];
|
|
|
|
}).config;
|
|
|
|
|
|
|
|
tarball = config.system.build.tarball;
|
|
|
|
in
|
|
|
|
tarball //
|
|
|
|
{ meta = {
|
|
|
|
description = "NixOS system tarball for ${system} - ${stdenv.platform.name}";
|
|
|
|
maintainers = map (x: lib.getAttr x lib.maintainers) maintainers;
|
|
|
|
};
|
|
|
|
inherit config;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
jobs = rec {
|
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
tarball =
|
2009-03-09 14:10:53 -07:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 05:25:23 -08:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2012-03-04 12:57:34 -08:00
|
|
|
with import <nixpkgs> {};
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-tarball";
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-03-06 06:11:05 -08:00
|
|
|
version = builtins.readFile ./VERSION;
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
src = nixosSrc;
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2008-12-17 05:25:23 -08:00
|
|
|
inherit officialRelease;
|
|
|
|
|
|
|
|
distPhase = ''
|
2009-03-25 13:12:44 -07:00
|
|
|
releaseName=nixos-$VERSION$VERSION_SUFFIX
|
2008-12-17 05:25:23 -08:00
|
|
|
ensureDir "$out/tarballs"
|
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName
|
|
|
|
cd ..
|
|
|
|
tar cfvj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
manual =
|
2009-03-09 14:12:46 -07:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
2008-12-17 05:25:23 -08:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2010-08-11 05:28:53 -07:00
|
|
|
(import "${nixosSrc}/doc/manual" {
|
2012-03-04 12:57:34 -08:00
|
|
|
pkgs = import <nixpkgs> {};
|
2009-09-15 07:09:18 -07:00
|
|
|
options =
|
2009-08-27 04:57:43 -07:00
|
|
|
(import lib/eval-config.nix {
|
2010-06-23 02:59:26 -07:00
|
|
|
modules = [ { fileSystems = []; } ];
|
2009-09-15 07:09:18 -07:00
|
|
|
}).options;
|
2011-09-14 11:20:50 -07:00
|
|
|
revision =
|
2010-06-23 03:41:37 -07:00
|
|
|
if nixosSrc.rev == 1234 then "HEAD" else toString nixosSrc.rev;
|
2010-08-11 05:28:53 -07:00
|
|
|
}).manual;
|
2008-12-17 05:25:23 -08:00
|
|
|
|
|
|
|
|
2012-02-23 04:00:05 -08:00
|
|
|
iso_minimal = makeIso {
|
2009-06-24 02:14:28 -07:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
|
2011-04-20 03:48:52 -07:00
|
|
|
type = "minimal";
|
2009-06-24 02:14:28 -07:00
|
|
|
};
|
2009-09-13 03:47:51 -07:00
|
|
|
|
2012-02-23 04:00:05 -08:00
|
|
|
iso_graphical = makeIso {
|
2009-06-24 02:14:28 -07:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
2011-04-20 03:48:52 -07:00
|
|
|
type = "graphical";
|
2009-06-24 02:14:28 -07:00
|
|
|
};
|
2009-08-31 07:56:19 -07:00
|
|
|
|
2011-11-08 11:51:39 -08:00
|
|
|
# A variant with a more recent (but possibly less stable) kernel
|
|
|
|
# that might support more hardware.
|
2012-02-23 04:00:05 -08:00
|
|
|
iso_new_kernel = makeIso {
|
2011-11-08 11:51:39 -08:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-new-kernel.nix;
|
|
|
|
type = "new-kernel";
|
|
|
|
};
|
|
|
|
|
2012-02-23 04:00:05 -08:00
|
|
|
|
2010-02-15 15:27:51 -08:00
|
|
|
# Provide a tarball that can be unpacked into an SD card, and easily
|
|
|
|
# boot that system from uboot (like for the sheevaplug).
|
|
|
|
# The pc variant helps preparing the expression for the system tarball
|
|
|
|
# in a machine faster than the sheevpalug
|
2012-02-23 04:00:05 -08:00
|
|
|
system_tarball_pc = makeSystemTarball {
|
2010-02-15 15:27:51 -08:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-pc.nix;
|
|
|
|
};
|
|
|
|
|
2010-10-07 14:16:05 -07:00
|
|
|
system_tarball_fuloong2f =
|
2011-04-27 08:47:41 -07:00
|
|
|
assert builtins.currentSystem == "mips64-linux";
|
2012-02-23 04:00:05 -08:00
|
|
|
makeSystemTarball {
|
2011-04-27 08:47:41 -07:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-fuloong2f.nix;
|
|
|
|
} { system = "mips64-linux"; };
|
2010-09-08 09:53:36 -07:00
|
|
|
|
2010-10-07 14:16:05 -07:00
|
|
|
system_tarball_sheevaplug =
|
2011-04-27 08:47:41 -07:00
|
|
|
assert builtins.currentSystem == "armv5tel-linux";
|
2012-02-23 04:00:05 -08:00
|
|
|
makeSystemTarball {
|
2011-04-27 08:47:41 -07:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-sheevaplug.nix;
|
|
|
|
} { system = "armv5tel-linux"; };
|
|
|
|
|
2010-09-08 09:53:36 -07:00
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
tests =
|
2010-01-05 03:18:43 -08:00
|
|
|
let
|
2011-09-14 11:20:50 -07:00
|
|
|
t = import ./tests {
|
2010-01-05 03:18:43 -08:00
|
|
|
system = "i686-linux";
|
|
|
|
};
|
|
|
|
in {
|
2010-10-10 15:37:41 -07:00
|
|
|
avahi = t.avahi.test;
|
2010-05-27 03:04:31 -07:00
|
|
|
bittorrent = t.bittorrent.test;
|
2010-01-05 15:59:29 -08:00
|
|
|
firefox = t.firefox.test;
|
2011-03-11 05:59:01 -08:00
|
|
|
firewall = t.firewall.test;
|
2010-01-07 08:45:35 -08:00
|
|
|
installer.lvm = t.installer.lvm.test;
|
2010-01-07 05:19:38 -08:00
|
|
|
installer.separateBoot = t.installer.separateBoot.test;
|
2010-01-07 08:45:35 -08:00
|
|
|
installer.simple = t.installer.simple.test;
|
2010-05-16 13:44:45 -07:00
|
|
|
installer.swraid = t.installer.swraid.test;
|
2010-10-10 15:55:42 -07:00
|
|
|
installer.rebuildCD = t.installer.rebuildCD.test;
|
2011-02-21 02:24:42 -08:00
|
|
|
ipv6 = t.ipv6.test;
|
2010-01-05 03:18:43 -08:00
|
|
|
kde4 = t.kde4.test;
|
2010-02-06 05:08:15 -08:00
|
|
|
login = t.login.test;
|
2011-06-01 00:37:23 -07:00
|
|
|
mpich = t.mpich.test;
|
2011-07-14 07:52:43 -07:00
|
|
|
mysql = t.mysql.test;
|
|
|
|
mysql_replication = t.mysql_replication.test;
|
2010-06-18 12:14:33 -07:00
|
|
|
nat = t.nat.test;
|
|
|
|
nfs = t.nfs.test;
|
2010-05-27 03:04:31 -07:00
|
|
|
openssh = t.openssh.test;
|
2010-01-11 07:58:15 -08:00
|
|
|
proxy = t.proxy.test;
|
2011-01-09 14:21:22 -08:00
|
|
|
quake3 = t.quake3.report;
|
2011-05-01 14:50:00 -07:00
|
|
|
#subversion = t.subversion.report;
|
2011-08-26 03:17:24 -07:00
|
|
|
tomcat = t.tomcat.test;
|
2010-01-05 04:04:04 -08:00
|
|
|
trac = t.trac.test;
|
2011-03-14 01:08:34 -07:00
|
|
|
xfce = t.xfce.test;
|
2010-01-05 03:18:43 -08:00
|
|
|
};
|
2009-08-31 07:56:19 -07:00
|
|
|
|
2012-02-23 04:00:05 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in jobs
|