laconicd/tests/integration_tests/shell.nix

16 lines
331 B
Nix
Raw Normal View History

2022-10-10 10:38:33 +00:00
{ system ? builtins.currentSystem, pkgs ? import ../../nix { inherit system; } }:
pkgs.mkShell {
buildInputs = [
pkgs.jq
(pkgs.callPackage ../../. { }) # ethermintd
pkgs.start-scripts
pkgs.go-ethereum
pkgs.cosmovisor
pkgs.nodejs
pkgs.test-env
];
shellHook = ''
. ${../../scripts/.env}
'';
}