laconicd/tests/integration_tests/shell.nix

16 lines
329 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
2022-10-13 05:53:17 +00:00
(pkgs.callPackage ../../. { }) # laconicd
2022-10-10 10:38:33 +00:00
pkgs.start-scripts
pkgs.go-ethereum
pkgs.cosmovisor
pkgs.nodejs
pkgs.test-env
];
shellHook = ''
. ${../../scripts/.env}
'';
}