Set the versionSuffix to include the Git shortrev

This commit is contained in:
Eelco Dolstra 2012-02-08 12:31:14 +01:00
parent 67444f5e54
commit fb95455c02
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{ nixpkgs ? <nixpkgs>, nixos ? <nixos>
, nix ? { outPath = ./.; rev = 1234; }
, nix ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
, officialRelease ? false
}:
@ -14,6 +14,7 @@ let
releaseTools.sourceTarball {
name = "nix-tarball";
version = builtins.readFile ./version;
versionSuffix = if officialRelease then "" else "pre${toString nix.revCount}_${nix.shortRev}";
src = nix;
inherit officialRelease;