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