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

9 lines
202 B
Nix
Raw Normal View History

2022-10-10 10:38:33 +00:00
{ pkgs ? import ../../../nix { } }:
2022-10-13 05:53:17 +00:00
let laconicd = (pkgs.callPackage ../../../. { });
2022-10-10 10:38:33 +00:00
in
2022-10-13 05:53:17 +00:00
laconicd.overrideAttrs (oldAttrs: {
2022-10-10 10:38:33 +00:00
patches = oldAttrs.patches or [ ] ++ [
2022-10-13 05:53:17 +00:00
./broken-laconicd.patch
2022-10-10 10:38:33 +00:00
];
})