0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

Set the versionSuffix on tarballs/channel properly

This commit is contained in:
Eelco Dolstra 2013-01-19 15:57:10 +01:00
parent e201da376e
commit c30b65df4b

View file

@ -86,7 +86,8 @@ let
src = nixosSrc;
inherit officialRelease version versionSuffix;
inherit officialRelease version;
versionSuffix = lib.optionalString (!officialRelease) versionSuffix;
distPhase = ''
echo -n $VERSION_SUFFIX > .version-suffix
@ -111,7 +112,8 @@ let
src = nixosSrc;
inherit officialRelease version versionSuffix;
inherit officialRelease version;
versionSuffix = lib.optionalString (!officialRelease) versionSuffix;
buildInputs = [ nixUnstable ];