laconicd/tests/integration_tests/configs/broken-ethermintd.nix
2022-10-13 11:23:17 +05:30

9 lines
202 B
Nix

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