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:
parent
e15a427c7b
commit
9ce833e2bc
|
@ -20,7 +20,7 @@ let haskellPackagesOverride = haskellPackages.override {
|
|||
hash = "sha256-H6oURBGoQWSOuPhBB+UKg2UarVzXgv1tmfDBLnOtdhU=";
|
||||
};
|
||||
libraryHaskellDepends = oa.libraryHaskellDepends
|
||||
++ (with haskellPackages;[githash witch]);
|
||||
++ (with haskellPackages;[githash witch tuple]);
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue