mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
haskell-sparse: jailbreak to fix build with current versions of vector-algorithms and QuickCheck
https://github.com/NixOS/nixpkgs/pull/1692 https://github.com/ekmett/sparse/issues/3 https://github.com/ekmett/sparse/issues/4
This commit is contained in:
parent
5b421f7bdb
commit
56d26d04ec
|
@ -18,6 +18,9 @@ cabal.mkDerivation (self: {
|
|||
QuickCheck semigroups simpleReflect testFramework
|
||||
testFrameworkQuickcheck2 testFrameworkTh transformers vector
|
||||
];
|
||||
patchPhase = ''
|
||||
sed -i -e 's|vector-algorithms >=.*|vector-algorithms|' -e 's|QuickCheck.*,|QuickCheck,|' sparse.cabal
|
||||
'';
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/sparse";
|
||||
|
|
Loading…
Reference in a new issue