laconicd-deprecated/tests/integration_tests/configs/broken-ethermintd.nix

9 lines
208 B
Nix
Raw Normal View History

{ pkgs ? import ../../../nix { } }:
let ethermintd = (pkgs.callPackage ../../../. { });
in
ethermintd.overrideAttrs (oldAttrs: {
patches = oldAttrs.patches or [ ] ++ [
./broken-ethermintd.patch
];
})