2012-04-09 12:49:03 +00:00
|
|
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
|
|
|
, nixpkgs ? {outPath = <nixpkgs>; rev = 5678;}
|
|
|
|
}:
|
2012-04-05 13:00:30 +00:00
|
|
|
|
2012-02-23 12:00:05 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
|
|
|
|
makeIso =
|
|
|
|
{ module, type, description ? type, maintainers ? ["eelco"] }:
|
2012-04-05 13:00:30 +00:00
|
|
|
{ officialRelease ? false
|
2012-02-23 12:00:05 +00:00
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
2012-03-04 21:13:52 +00:00
|
|
|
with import <nixpkgs> {inherit system;};
|
2012-02-23 12:00:05 +00: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 20:57:34 +00:00
|
|
|
inherit system;
|
2012-02-23 12:00:05 +00: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"]}:
|
2012-04-05 13:00:30 +00:00
|
|
|
{ officialRelease ? false
|
2012-02-23 12:00:05 +00:00
|
|
|
, system ? "i686-linux"
|
|
|
|
}:
|
|
|
|
|
2012-03-04 20:57:34 +00:00
|
|
|
with import <nixpkgs> {inherit system;};
|
2012-02-23 12:00:05 +00: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 20:57:34 +00:00
|
|
|
inherit system;
|
2012-02-23 12:00:05 +00: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 13:25:23 +00:00
|
|
|
|
|
|
|
tarball =
|
2012-04-05 13:00:30 +00:00
|
|
|
{ officialRelease ? false }:
|
2008-12-17 13:25:23 +00:00
|
|
|
|
2012-03-04 20:57:34 +00:00
|
|
|
with import <nixpkgs> {};
|
2008-12-17 13:25:23 +00:00
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-tarball";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-03-06 14:11:05 +00:00
|
|
|
version = builtins.readFile ./VERSION;
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-12-17 13:25:23 +00:00
|
|
|
src = nixosSrc;
|
2011-09-14 18:20:50 +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
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-09 12:49:03 +00:00
|
|
|
channel =
|
|
|
|
{ officialRelease ? false }:
|
|
|
|
|
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
|
|
|
releaseTools.makeSourceTarball {
|
|
|
|
name = "nixos-channel";
|
|
|
|
|
|
|
|
version = builtins.readFile ./VERSION;
|
|
|
|
|
|
|
|
src = nixosSrc;
|
|
|
|
|
|
|
|
inherit officialRelease;
|
|
|
|
|
|
|
|
buildInputs = [ nixUnstable ];
|
|
|
|
|
|
|
|
expr =
|
|
|
|
''
|
|
|
|
{ system ? builtins.currentSystem }:
|
|
|
|
{ pkgs = (import nixpkgs/default.nix { inherit system; }) // { recurseForDerivations = true; }; }
|
|
|
|
'';
|
|
|
|
|
|
|
|
distPhase = ''
|
|
|
|
releaseName=nixos-$VERSION$VERSION_SUFFIX-${toString nixpkgs.rev}
|
|
|
|
ensureDir "$out/tarballs"
|
|
|
|
mkdir ../$releaseName
|
|
|
|
cp -prd . ../$releaseName/nixos
|
|
|
|
cp -prd ${nixpkgs} ../$releaseName/nixpkgs
|
|
|
|
echo "$expr" > ../$releaseName/default.nix
|
|
|
|
NIX_STATE_DIR=$TMPDIR nix-env -f ../$releaseName/default.nix -qaP --meta --xml \* > /dev/null
|
|
|
|
cd ..
|
|
|
|
tar cfj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
|
|
|
''; # */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-12-17 13:25:23 +00:00
|
|
|
manual =
|
2012-04-05 13:00:30 +00:00
|
|
|
{ officialRelease ? false }:
|
2008-12-17 13:25:23 +00:00
|
|
|
|
2010-08-11 12:28:53 +00:00
|
|
|
(import "${nixosSrc}/doc/manual" {
|
2012-03-04 20:57:34 +00:00
|
|
|
pkgs = import <nixpkgs> {};
|
2009-09-15 14:09:18 +00:00
|
|
|
options =
|
2009-08-27 11:57:43 +00:00
|
|
|
(import lib/eval-config.nix {
|
2010-06-23 09:59:26 +00:00
|
|
|
modules = [ { fileSystems = []; } ];
|
2009-09-15 14:09:18 +00:00
|
|
|
}).options;
|
2012-04-09 12:49:03 +00:00
|
|
|
revision = toString nixosSrc.rev;
|
2010-08-11 12:28:53 +00:00
|
|
|
}).manual;
|
2008-12-17 13:25:23 +00:00
|
|
|
|
|
|
|
|
2012-02-23 12:00:05 +00:00
|
|
|
iso_minimal = makeIso {
|
2009-06-24 09:14:28 +00:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
|
2011-04-20 10:48:52 +00:00
|
|
|
type = "minimal";
|
2009-06-24 09:14:28 +00:00
|
|
|
};
|
2009-09-13 10:47:51 +00:00
|
|
|
|
2012-02-23 12:00:05 +00:00
|
|
|
iso_graphical = makeIso {
|
2009-06-24 09:14:28 +00:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-graphical.nix;
|
2011-04-20 10:48:52 +00:00
|
|
|
type = "graphical";
|
2009-06-24 09:14:28 +00:00
|
|
|
};
|
2009-08-31 14:56:19 +00:00
|
|
|
|
2011-11-08 19:51:39 +00:00
|
|
|
# A variant with a more recent (but possibly less stable) kernel
|
|
|
|
# that might support more hardware.
|
2012-02-23 12:00:05 +00:00
|
|
|
iso_new_kernel = makeIso {
|
2011-11-08 19:51:39 +00:00
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-new-kernel.nix;
|
|
|
|
type = "new-kernel";
|
|
|
|
};
|
|
|
|
|
2012-03-16 12:24:29 +00:00
|
|
|
# A variant with experimental efi booting support. Currently requires
|
|
|
|
# an RC kernel. Eventually this should probably be merged into cd-minimal
|
|
|
|
iso_efi = makeIso {
|
|
|
|
module = ./modules/installer/cd-dvd/installation-cd-efi.nix;
|
|
|
|
type = "efi";
|
|
|
|
};
|
2012-02-23 12:00:05 +00:00
|
|
|
|
2010-02-15 23:27:51 +00: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 12:00:05 +00:00
|
|
|
system_tarball_pc = makeSystemTarball {
|
2010-02-15 23:27:51 +00:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-pc.nix;
|
|
|
|
};
|
|
|
|
|
2012-04-09 12:52:15 +00:00
|
|
|
/*
|
2010-10-07 21:16:05 +00:00
|
|
|
system_tarball_fuloong2f =
|
2011-04-27 15:47:41 +00:00
|
|
|
assert builtins.currentSystem == "mips64-linux";
|
2012-02-23 12:00:05 +00:00
|
|
|
makeSystemTarball {
|
2011-04-27 15:47:41 +00:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-fuloong2f.nix;
|
|
|
|
} { system = "mips64-linux"; };
|
2010-09-08 16:53:36 +00:00
|
|
|
|
2010-10-07 21:16:05 +00:00
|
|
|
system_tarball_sheevaplug =
|
2011-04-27 15:47:41 +00:00
|
|
|
assert builtins.currentSystem == "armv5tel-linux";
|
2012-02-23 12:00:05 +00:00
|
|
|
makeSystemTarball {
|
2011-04-27 15:47:41 +00:00
|
|
|
module = ./modules/installer/cd-dvd/system-tarball-sheevaplug.nix;
|
|
|
|
} { system = "armv5tel-linux"; };
|
2012-04-09 12:52:15 +00:00
|
|
|
*/
|
2011-04-27 15:47:41 +00:00
|
|
|
|
2010-09-08 16:53:36 +00:00
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
tests =
|
2010-01-05 11:18:43 +00:00
|
|
|
let
|
2012-04-01 20:51:10 +00:00
|
|
|
t = import ./tests { system = "i686-linux"; };
|
|
|
|
t_64 = import ./tests { system = "x86_64-linux"; };
|
2010-01-05 11:18:43 +00:00
|
|
|
in {
|
2010-10-10 22:37:41 +00:00
|
|
|
avahi = t.avahi.test;
|
2010-05-27 10:04:31 +00:00
|
|
|
bittorrent = t.bittorrent.test;
|
2010-01-05 23:59:29 +00:00
|
|
|
firefox = t.firefox.test;
|
2011-03-11 13:59:01 +00:00
|
|
|
firewall = t.firewall.test;
|
2010-01-07 16:45:35 +00:00
|
|
|
installer.lvm = t.installer.lvm.test;
|
2010-01-07 13:19:38 +00:00
|
|
|
installer.separateBoot = t.installer.separateBoot.test;
|
2010-01-07 16:45:35 +00:00
|
|
|
installer.simple = t.installer.simple.test;
|
2012-04-01 20:51:10 +00:00
|
|
|
installer.simple_64 = t_64.installer.simple.test;
|
2010-05-16 20:44:45 +00:00
|
|
|
installer.swraid = t.installer.swraid.test;
|
2010-10-10 22:55:42 +00:00
|
|
|
installer.rebuildCD = t.installer.rebuildCD.test;
|
2011-02-21 10:24:42 +00:00
|
|
|
ipv6 = t.ipv6.test;
|
2010-01-05 11:18:43 +00:00
|
|
|
kde4 = t.kde4.test;
|
2010-02-06 13:08:15 +00:00
|
|
|
login = t.login.test;
|
2011-06-01 07:37:23 +00:00
|
|
|
mpich = t.mpich.test;
|
2011-07-14 14:52:43 +00:00
|
|
|
mysql = t.mysql.test;
|
|
|
|
mysql_replication = t.mysql_replication.test;
|
2010-06-18 19:14:33 +00:00
|
|
|
nat = t.nat.test;
|
|
|
|
nfs = t.nfs.test;
|
2010-05-27 10:04:31 +00:00
|
|
|
openssh = t.openssh.test;
|
2010-01-11 15:58:15 +00:00
|
|
|
proxy = t.proxy.test;
|
2011-01-09 22:21:22 +00:00
|
|
|
quake3 = t.quake3.report;
|
2011-05-01 21:50:00 +00:00
|
|
|
#subversion = t.subversion.report;
|
2011-08-26 10:17:24 +00:00
|
|
|
tomcat = t.tomcat.test;
|
2010-01-05 12:04:04 +00:00
|
|
|
trac = t.trac.test;
|
2011-03-14 08:08:34 +00:00
|
|
|
xfce = t.xfce.test;
|
2010-01-05 11:18:43 +00:00
|
|
|
};
|
2009-08-31 14:56:19 +00:00
|
|
|
|
2012-02-23 12:00:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in jobs
|