nixpkgs/nixos/release-combined.nix

76 lines
2.1 KiB
Nix
Raw Normal View History

{ nixpkgs ? { outPath = ./..; revCount = 5678; shortRev = "gfedcba"; }
, officialRelease ? false
2013-10-31 21:04:26 +00:00
, stableBranch ? false
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
}:
let
nixpkgsSrc = nixpkgs; # urgh
2013-03-26 13:44:24 +00:00
pkgs = import ./.. {};
removeMaintainers = set: if builtins.isAttrs set
then if (set.type or "") == "derivation"
then set // { meta = builtins.removeAttrs (set.meta or {}) [ "maintainers" ]; }
else pkgs.lib.mapAttrs (n: v: removeMaintainers v) set
else set;
in rec {
2013-08-15 14:37:53 +00:00
nixos = removeMaintainers (import ./release.nix {
2013-10-31 21:04:26 +00:00
inherit officialRelease stableBranch;
nixpkgs = nixpkgsSrc;
});
nixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
inherit officialRelease supportedSystems;
nixpkgs = nixpkgsSrc;
})) [ "unstable" ];
tested = pkgs.releaseTools.aggregate {
name = "nixos-${nixos.channel.version}";
meta = {
description = "Release-critical builds for the NixOS unstable channel";
maintainers = [ pkgs.lib.maintainers.eelco pkgs.lib.maintainers.shlevy ];
};
constituents =
let all = x: [ x.x86_64-linux x.i686-linux ]; in
[ nixos.channel
(all nixos.manual)
(all nixos.iso_minimal)
(all nixos.iso_graphical)
(all nixos.ova)
2014-03-01 14:51:28 +00:00
# (all nixos.tests.efi-installer.simple)
2014-04-25 15:08:58 +00:00
(all nixos.tests.containers)
(all nixos.tests.firefox)
(all nixos.tests.firewall)
2014-04-26 11:31:07 +00:00
(all nixos.tests.gnome3)
#(all nixos.tests.installer.efi)
2013-10-17 10:20:07 +00:00
(all nixos.tests.installer.grub1)
(all nixos.tests.installer.lvm)
(all nixos.tests.installer.separateBoot)
(all nixos.tests.installer.simple)
2013-10-17 10:20:07 +00:00
(all nixos.tests.ipv6)
(all nixos.tests.kde4)
(all nixos.tests.login)
(all nixos.tests.misc)
2013-10-17 10:20:07 +00:00
(all nixos.tests.nat)
(all nixos.tests.nfs3)
(all nixos.tests.openssh)
2013-09-26 19:00:30 +00:00
(all nixos.tests.printing)
2013-10-17 10:20:07 +00:00
(all nixos.tests.proxy)
2014-04-25 15:08:58 +00:00
(all nixos.tests.simple)
2014-04-07 11:20:29 +00:00
(all nixos.tests.udisks)
2014-04-19 12:37:05 +00:00
(all nixos.tests.udisks2)
(all nixos.tests.xfce)
nixpkgs.tarball
(all nixpkgs.emacs)
];
};
}