nrpl: fix compilation with nim 0.19
This commit is contained in:
parent
bb2bae6986
commit
18aa80f352
|
@ -25,7 +25,10 @@ stdenv.mkDerivation rec {
|
|||
"-lpcre"
|
||||
];
|
||||
|
||||
buildPhase = "nim c -d:release nrpl.nim";
|
||||
buildPhase = ''
|
||||
HOME=$TMPDIR
|
||||
nim c -d:release nrpl.nim
|
||||
'';
|
||||
|
||||
installPhase = "install -Dt $out/bin nrpl";
|
||||
|
||||
|
|
Loading…
Reference in New Issue