forked from mirrors/nixpkgs
Add all default NixOS packages to the channel
The job ‘dummy’ depends on the default contents of ‘environment.systemPackages’, thus ensuring that those packages all end up in the channel.
This commit is contained in:
parent
0a967b9268
commit
1cd727180e
|
@ -1,3 +1,7 @@
|
||||||
|
# This jobset defines the main NixOS channels (such as nixos-unstable
|
||||||
|
# and nixos-14.04). The channel is updated every time the ‘tested’ job
|
||||||
|
# succeeds, and all other jobs have finished (they may fail).
|
||||||
|
|
||||||
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
|
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
|
||||||
, stableBranch ? false
|
, stableBranch ? false
|
||||||
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
|
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
|
||||||
|
@ -18,7 +22,7 @@ let
|
||||||
in rec {
|
in rec {
|
||||||
|
|
||||||
nixos = removeMaintainers (import ./release.nix {
|
nixos = removeMaintainers (import ./release.nix {
|
||||||
inherit stableBranch;
|
inherit stableBranch supportedSystems;
|
||||||
nixpkgs = nixpkgsSrc;
|
nixpkgs = nixpkgsSrc;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -30,12 +34,13 @@ in rec {
|
||||||
tested = pkgs.releaseTools.aggregate {
|
tested = pkgs.releaseTools.aggregate {
|
||||||
name = "nixos-${nixos.channel.version}";
|
name = "nixos-${nixos.channel.version}";
|
||||||
meta = {
|
meta = {
|
||||||
description = "Release-critical builds for the NixOS unstable channel";
|
description = "Release-critical builds for the NixOS channel";
|
||||||
maintainers = [ pkgs.lib.maintainers.eelco pkgs.lib.maintainers.shlevy ];
|
maintainers = [ pkgs.lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
constituents =
|
constituents =
|
||||||
let all = x: map (p: x.${p}) supportedSystems; in
|
let all = x: map (system: x.${system}) supportedSystems; in
|
||||||
[ nixos.channel
|
[ nixos.channel
|
||||||
|
(all nixos.dummy)
|
||||||
(all nixos.manual)
|
(all nixos.manual)
|
||||||
|
|
||||||
(all nixos.iso_minimal)
|
(all nixos.iso_minimal)
|
||||||
|
|
|
@ -186,6 +186,16 @@ in rec {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
# Ensure that all packages used by the minimal NixOS config end up in the channel.
|
||||||
|
dummy = forAllSystems (system: pkgs.runCommand "dummy"
|
||||||
|
{ propagatedBuildInputs = (import lib/eval-config.nix {
|
||||||
|
inherit system;
|
||||||
|
modules = lib.singleton ({ config, pkgs, ... }: { });
|
||||||
|
}).config.environment.systemPackages;
|
||||||
|
}
|
||||||
|
"mkdir $out; fixupPhase");
|
||||||
|
|
||||||
|
|
||||||
# Provide a tarball that can be unpacked into an SD card, and easily
|
# Provide a tarball that can be unpacked into an SD card, and easily
|
||||||
# boot that system from uboot (like for the sheevaplug).
|
# boot that system from uboot (like for the sheevaplug).
|
||||||
# The pc variant helps preparing the expression for the system tarball
|
# The pc variant helps preparing the expression for the system tarball
|
||||||
|
|
Loading…
Reference in a new issue