3
0
Fork 0
forked from mirrors/nixpkgs

echidna: fix broken build

The overridden `hevm` package declared in `echnidna`s package
is missing its `tuple` dependency, leading to failing builds:

```
Configuring hevm-0.51.3...
CallStack (from HasCallStack):
  withMetadata, called at libraries/Cabal/Cabal/src/Distribution/Simple/Utils.hs:370:14 in Cabal-3.8.1.0:Distribution.Simple.Utils
Error: Setup: Encountered missing or private dependencies:
tuple >=0.3.0.2 && <0.4
```
This commit is contained in:
Manuel Frischknecht 2023-12-28 00:47:45 +00:00
parent e15a427c7b
commit 9ce833e2bc

View file

@ -20,7 +20,7 @@ let haskellPackagesOverride = haskellPackages.override {
hash = "sha256-H6oURBGoQWSOuPhBB+UKg2UarVzXgv1tmfDBLnOtdhU=";
};
libraryHaskellDepends = oa.libraryHaskellDepends
++ (with haskellPackages;[githash witch]);
++ (with haskellPackages;[githash witch tuple]);
});
};
};