plan9port: 2021-10-19 -> 2022-09-12
the new version stamps out further path-related annoyances, though it does require explicitly giving PLAN9_TARGET during buildPhase (everything moves to $out during installPhase anyway, where ./INSTALL works it out unassisted).
This commit is contained in:
parent
bd5bde3e99
commit
a335198d4d
1 changed files with 4 additions and 4 deletions
|
@ -7,13 +7,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "plan9port";
|
pname = "plan9port";
|
||||||
version = "2021-10-19";
|
version = "2022-09-12";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "9fans";
|
owner = "9fans";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "d0d440860f2000a1560abb3f593cdc325fcead4c";
|
rev = "ffbdd1aa20c8a20a8e9dcd3cec644b6dfa3c6acb";
|
||||||
hash = "sha256-2aYXqPGwrReyFPrLDtEjgQd/RJjpOfI3ge/tDocYpRQ=";
|
hash = "sha256-Lq5B4VYUetkHwhFX2EaLr33wR1aLIiVn8OBobxjFt7I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
./INSTALL -b
|
PLAN9_TARGET=$out/plan9 ./INSTALL -b
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue