Add aggregate job for a forthcoming nixpkgs-darwin-unstable channel

+15
+15
pkgs/top-level/release.nix
··· 31 31 manual = import ../../doc; 32 32 lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; }; 33 33 34 + darwin-tested = pkgs.releaseTools.aggregate 35 + { name = "nixpkgs-darwin-${jobs.tarball.version}"; 36 + meta.description = "Release-critical builds for the Nixpkgs darwin channel"; 37 + constituents = 38 + [ jobs.tarball 39 + jobs.stdenv.x86_64-darwin 40 + jobs.ghc.x86_64-darwin 41 + jobs.cabal2nix.x86_64-darwin 42 + jobs.ruby.x86_64-darwin 43 + jobs.python.x86_64-darwin 44 + jobs.rustc.x86_64-darwin 45 + jobs.go.x86_64-darwin 46 + ]; 47 + }; 48 + 34 49 unstable = pkgs.releaseTools.aggregate 35 50 { name = "nixpkgs-${jobs.tarball.version}"; 36 51 meta.description = "Release-critical builds for the Nixpkgs unstable channel";