Merge pull request #49250 from royneary/nim-0.19

nim: 0.18.0 -> 0.19.0
This commit is contained in:
Gabriel Ebner
2018-11-02 10:20:13 +01:00
committed by GitHub
3 changed files with 31 additions and 26 deletions

View File

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