mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
svn path=/nixos/trunk/; revision=14478
This commit is contained in:
parent
88fd4080b2
commit
1e947b7acd
1 changed files with 7 additions and 8 deletions
15
release.nix
15
release.nix
|
@ -1,3 +1,5 @@
|
|||
{ nixpkgs ? ../nixpkgs-wc }:
|
||||
|
||||
let
|
||||
|
||||
|
||||
|
@ -5,12 +7,11 @@ let
|
|||
|
||||
|
||||
tarball =
|
||||
{ nixosSrc ? {path = ./.; rev = 1234;}
|
||||
, nixpkgs ? {path = ../nixpkgs-wc;}
|
||||
{ nixosSrc ? {outPath = ./.; rev = 1234;}
|
||||
, officialRelease ? false
|
||||
}:
|
||||
|
||||
with import nixpkgs.path {};
|
||||
with import nixpkgs {};
|
||||
|
||||
releaseTools.makeSourceTarball {
|
||||
name = "nixos-tarball";
|
||||
|
@ -34,23 +35,21 @@ let
|
|||
|
||||
manual =
|
||||
{ nixosSrc ? {path = ./.; rev = 1234;}
|
||||
, nixpkgs ? {path = ../nixpkgs-wc;}
|
||||
, officialRelease ? false
|
||||
}:
|
||||
|
||||
import "${nixosSrc.path}/doc/manual" {
|
||||
nixpkgsPath = nixpkgs.path;
|
||||
nixpkgsPath = nixpkgs.outPath;
|
||||
};
|
||||
|
||||
|
||||
iso =
|
||||
{ nixosSrc ? {path = ./.; rev = 1234;}
|
||||
, nixpkgs ? {path = ../nixpkgs-wc;}
|
||||
, officialRelease ? false
|
||||
, system ? "i686-linux"
|
||||
}:
|
||||
|
||||
with import nixpkgs.path {inherit system;};
|
||||
with import nixpkgs {inherit system;};
|
||||
|
||||
let
|
||||
|
||||
|
@ -59,7 +58,7 @@ let
|
|||
iso = (import "${nixosSrc.path}/installer/cd-dvd/rescue-cd.nix" {
|
||||
platform = system;
|
||||
compressImage = true;
|
||||
nixpkgsPath = nixpkgs.path;
|
||||
nixpkgsPath = nixpkgs.outPath;
|
||||
relName = "nixos-${version}";
|
||||
}).rescueCD;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue