mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
* Generate a NixOS channel.
svn path=/nixos/trunk/; revision=33684
This commit is contained in:
parent
6b34bd8564
commit
defe1d36cb
43
release.nix
43
release.nix
@ -1,4 +1,6 @@
|
|||||||
{ nixosSrc ? {outPath = ./.; rev = 1234;} }:
|
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
||||||
|
, nixpkgs ? {outPath = <nixpkgs>; rev = 5678;}
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
@ -99,6 +101,42 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
channel =
|
||||||
|
{ officialRelease ? false }:
|
||||||
|
|
||||||
|
with import <nixpkgs> {};
|
||||||
|
|
||||||
|
releaseTools.makeSourceTarball {
|
||||||
|
name = "nixos-channel";
|
||||||
|
|
||||||
|
version = builtins.readFile ./VERSION;
|
||||||
|
|
||||||
|
src = nixosSrc;
|
||||||
|
|
||||||
|
inherit officialRelease;
|
||||||
|
|
||||||
|
buildInputs = [ nixUnstable ];
|
||||||
|
|
||||||
|
expr =
|
||||||
|
''
|
||||||
|
{ system ? builtins.currentSystem }:
|
||||||
|
{ pkgs = (import nixpkgs/default.nix { inherit system; }) // { recurseForDerivations = true; }; }
|
||||||
|
'';
|
||||||
|
|
||||||
|
distPhase = ''
|
||||||
|
releaseName=nixos-$VERSION$VERSION_SUFFIX-${toString nixpkgs.rev}
|
||||||
|
ensureDir "$out/tarballs"
|
||||||
|
mkdir ../$releaseName
|
||||||
|
cp -prd . ../$releaseName/nixos
|
||||||
|
cp -prd ${nixpkgs} ../$releaseName/nixpkgs
|
||||||
|
echo "$expr" > ../$releaseName/default.nix
|
||||||
|
NIX_STATE_DIR=$TMPDIR nix-env -f ../$releaseName/default.nix -qaP --meta --xml \* > /dev/null
|
||||||
|
cd ..
|
||||||
|
tar cfj $out/tarballs/$releaseName.tar.bz2 $releaseName
|
||||||
|
''; # */
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
manual =
|
manual =
|
||||||
{ officialRelease ? false }:
|
{ officialRelease ? false }:
|
||||||
|
|
||||||
@ -108,8 +146,7 @@ let
|
|||||||
(import lib/eval-config.nix {
|
(import lib/eval-config.nix {
|
||||||
modules = [ { fileSystems = []; } ];
|
modules = [ { fileSystems = []; } ];
|
||||||
}).options;
|
}).options;
|
||||||
revision =
|
revision = toString nixosSrc.rev;
|
||||||
if nixosSrc.rev == 1234 then "HEAD" else toString nixosSrc.rev;
|
|
||||||
}).manual;
|
}).manual;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user