2014-09-24 22:22:27 +00:00
|
|
|
# This jobset is used to generate a NixOS channel that contains a
|
|
|
|
# small subset of Nixpkgs, mostly useful for servers that need fast
|
|
|
|
# security updates.
|
|
|
|
|
2018-02-01 09:34:03 +00:00
|
|
|
{ nixpkgs ? { outPath = (import ../lib).cleanSource ./..; revCount = 56789; shortRev = "gfedcba"; }
|
2014-09-24 22:22:27 +00:00
|
|
|
, stableBranch ? false
|
|
|
|
, supportedSystems ? [ "x86_64-linux" ] # no i686-linux
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
nixpkgsSrc = nixpkgs; # urgh
|
|
|
|
|
|
|
|
pkgs = import ./.. {};
|
|
|
|
|
|
|
|
lib = pkgs.lib;
|
|
|
|
|
|
|
|
nixos' = import ./release.nix {
|
|
|
|
inherit stableBranch supportedSystems;
|
|
|
|
nixpkgs = nixpkgsSrc;
|
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs' = builtins.removeAttrs (import ../pkgs/top-level/release.nix {
|
|
|
|
inherit supportedSystems;
|
|
|
|
nixpkgs = nixpkgsSrc;
|
|
|
|
}) [ "unstable" ];
|
|
|
|
|
|
|
|
in rec {
|
|
|
|
|
|
|
|
nixos = {
|
|
|
|
inherit (nixos') channel manual iso_minimal dummy;
|
|
|
|
tests = {
|
|
|
|
inherit (nixos'.tests)
|
2016-04-26 20:38:47 +00:00
|
|
|
containers-imperative
|
|
|
|
containers-ipv4
|
2014-09-24 22:22:27 +00:00
|
|
|
firewall
|
|
|
|
ipv6
|
|
|
|
login
|
|
|
|
misc
|
|
|
|
nat
|
|
|
|
nfs3
|
|
|
|
openssh
|
2017-11-12 10:03:54 +00:00
|
|
|
php-pcre
|
2018-02-09 18:40:39 +00:00
|
|
|
predictable-interface-names
|
2014-09-24 22:22:27 +00:00
|
|
|
proxy
|
|
|
|
simple;
|
|
|
|
installer = {
|
|
|
|
inherit (nixos'.tests.installer)
|
|
|
|
lvm
|
|
|
|
separateBoot
|
|
|
|
simple;
|
|
|
|
};
|
2018-02-27 19:09:07 +00:00
|
|
|
boot = {
|
|
|
|
inherit (nixos'.tests.boot)
|
|
|
|
biosCdrom;
|
|
|
|
};
|
2014-09-24 22:22:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
inherit (nixpkgs')
|
2017-01-27 14:30:33 +00:00
|
|
|
apacheHttpd
|
2014-09-25 15:52:25 +00:00
|
|
|
cmake
|
|
|
|
cryptsetup
|
2014-09-24 22:22:27 +00:00
|
|
|
emacs
|
2014-09-25 15:52:25 +00:00
|
|
|
gettext
|
|
|
|
git
|
|
|
|
imagemagick
|
2015-01-01 23:49:20 +00:00
|
|
|
jdk
|
2014-09-25 15:52:25 +00:00
|
|
|
linux
|
2017-01-27 14:30:48 +00:00
|
|
|
mysql
|
2014-09-24 22:22:27 +00:00
|
|
|
nginx
|
2014-09-25 10:50:08 +00:00
|
|
|
nodejs
|
2014-09-24 22:22:27 +00:00
|
|
|
openssh
|
|
|
|
php
|
2017-01-27 14:30:48 +00:00
|
|
|
postgresql
|
2014-09-24 22:22:27 +00:00
|
|
|
python
|
|
|
|
rsyslog
|
|
|
|
stdenv
|
2014-09-25 15:52:25 +00:00
|
|
|
subversion
|
2014-09-24 22:22:27 +00:00
|
|
|
tarball
|
|
|
|
vim;
|
|
|
|
};
|
|
|
|
|
2015-03-20 18:23:55 +00:00
|
|
|
tested = lib.hydraJob (pkgs.releaseTools.aggregate {
|
2014-09-24 22:22:27 +00:00
|
|
|
name = "nixos-${nixos.channel.version}";
|
|
|
|
meta = {
|
|
|
|
description = "Release-critical builds for the NixOS channel";
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
};
|
|
|
|
constituents =
|
|
|
|
let all = x: map (system: x.${system}) supportedSystems; in
|
2015-07-14 14:01:46 +00:00
|
|
|
[ nixpkgs.tarball
|
|
|
|
(all nixpkgs.jdk)
|
|
|
|
]
|
|
|
|
++ lib.collect lib.isDerivation nixos;
|
2015-03-20 18:23:55 +00:00
|
|
|
});
|
2014-09-24 22:22:27 +00:00
|
|
|
|
|
|
|
}
|