diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-03-20 13:39:39 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-03-20 13:39:39 +0100 |
commit | bc5d4843a916dc4f99516e187a63108e8006f81f (patch) | |
tree | 1e399f7c1ce502cd35cfa2f8d6687bcbc8067a0a /flake.nix | |
parent | 1537e270fbb9a5a29e7773824062023e3ef5da5a (diff) |
Fix coverage job
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -132,8 +132,6 @@ ''} ln -sfn ${final.nixVendoredCrates}/vendor/ nix-rust/vendor - - (cd perl; autoreconf --install --force --verbose) ''; configureFlags = configureFlags ++ @@ -344,6 +342,11 @@ src = self; + preConfigure = + '' + ln -sfn ${nixVendoredCrates}/vendor/ nix-rust/vendor + ''; + enableParallelBuilding = true; buildInputs = buildDeps ++ propagatedDeps; |