laconicd/tests/integration_tests/configs/broken-ethermintd.nix
2022-10-10 16:08:33 +05:30

9 lines
208 B
Nix

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