plan9port: quick&dirty breakage fix

The presence of '+' in version string propagates to PATH variable, which breaks
`u` script, because `u` uses p9p's `sed` that treats `+` as a metacharacter.

Because of this, the version string will be reverted.
This commit is contained in:
AndersonTorres 2021-11-16 20:02:40 -03:00
parent beff4b8178
commit 17b1055d65

View File

@ -14,7 +14,7 @@
stdenv.mkDerivation {
pname = "plan9port";
version = "0.pre+date=2021-10-19";
version = "2021-10-19";
src = fetchFromGitHub {
owner = "9fans";