haskellPackages.sexpr: fix build

This commit is contained in:
Bas van Dijk
2018-08-03 02:00:47 +02:00
parent 687771ced6
commit 3328ea7749
2 changed files with 93 additions and 0 deletions
@@ -1128,4 +1128,11 @@ self: super: {
# needed because of testing-feat >=0.4.0.2 && <1.1
language-ecmascript = doJailbreak super.language-ecmascript;
# sexpr is old, broken and has no issue-tracker. Let's fix it the best we can.
sexpr =
appendPatch (overrideCabal super.sexpr (drv: {
isExecutable = false;
libraryHaskellDepends = drv.libraryHaskellDepends ++ [self.QuickCheck];
})) ./patches/sexpr-0.2.1.patch;
}