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

@ -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 ];