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:
parent
beff4b8178
commit
17b1055d65
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "plan9port";
|
pname = "plan9port";
|
||||||
version = "0.pre+date=2021-10-19";
|
version = "2021-10-19";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "9fans";
|
owner = "9fans";
|
||||||
|
|
Loading…
Reference in a new issue