3
0
Fork 0
forked from mirrors/nixpkgs

haskell-loc-test: break infinite recursion in test dependencies

This commit is contained in:
Peter Simons 2017-05-09 10:56:22 +02:00
parent 450a76eb62
commit 890fd54fde

View file

@ -454,4 +454,8 @@ self: super: builtins.intersectAttrs super {
export PATH="$PWD/dist/build/intero:$PATH"
'';
});
# loc and loc-test depend on each other for testing. Break that infinite cycle:
loc-test = super.loc-test.override { loc = dontCheck self.loc; };
}