mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
* Make building a tarball from a Subversion working copy faster by
filtering out all the .svn files. To build a Nixpkgs tarball from your working copy (and run the same tests that the build farm does): $ nix-build pkgs/top-level/release.nix -A tarball If this fails, then you broke something ;-) svn path=/nixpkgs/trunk/; revision=13573
This commit is contained in:
parent
c08a809373
commit
a5d3e865ea
|
@ -9,7 +9,7 @@ let
|
||||||
|
|
||||||
|
|
||||||
tarball =
|
tarball =
|
||||||
{ nixpkgs ? {path = ../../../nixpkgs-wc; rev = 1234;}
|
{ nixpkgs ? {path = (allPackages {}).lib.cleanSource ../..; rev = 1234;}
|
||||||
, officialRelease ? false
|
, officialRelease ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue