release.nix: Drop officialRelease flag

gstqt5
Eelco Dolstra 2014-05-01 14:52:07 +02:00
parent 8310c6a403
commit 3b616e378a
2 changed files with 5 additions and 8 deletions

View File

@ -1,5 +1,4 @@
{ nixpkgs ? { outPath = ./..; revCount = 5678; shortRev = "gfedcba"; }
, officialRelease ? false
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
, stableBranch ? false
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
}:
@ -19,12 +18,12 @@ let
in rec {
nixos = removeMaintainers (import ./release.nix {
inherit officialRelease stableBranch;
inherit stableBranch;
nixpkgs = nixpkgsSrc;
});
nixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
inherit officialRelease supportedSystems;
inherit supportedSystems;
nixpkgs = nixpkgsSrc;
})) [ "unstable" ];

View File

@ -1,5 +1,4 @@
{ nixpkgs ? { outPath = ./..; revCount = 5678; shortRev = "gfedcba"; }
, officialRelease ? false
{ nixpkgs ? { outPath = ./..; revCount = 56789; shortRev = "gfedcba"; }
, stableBranch ? false
, supportedSystems ? [ "x86_64-linux" "i686-linux" ]
}:
@ -8,8 +7,7 @@ let
version = builtins.readFile ../.version;
versionSuffix =
if officialRelease then ""
else (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
(if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
forAllSystems = pkgs.lib.genAttrs supportedSystems;