Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
pkgs.slither-analyzer
pkgs.solc_0_8_25
pkgs.reuse
# jq is the canonical tool for extracting stable subsets of
# forge build artifacts via `vm.ffi` in CopyArtifacts.sol-style
# scripts.
pkgs.jq
];

node-build-inputs = [
Expand Down Expand Up @@ -332,6 +336,7 @@
bats test/bats/devshell/sol-shell/solc.test.bats
bats test/bats/devshell/sol-shell/reuse.test.bats
bats test/bats/devshell/sol-shell/gh.test.bats
bats test/bats/devshell/sol-shell/jq.test.bats
bats test/bats/devshell/sol-shell/sol-tasks.test.bats
bats test/bats/devshell/sol-shell/slim.test.bats
bats test/bats/devshell/sol-shell/closure.test.bats
Expand Down
4 changes: 4 additions & 0 deletions test/bats/devshell/sol-shell/jq.test.bats
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@test "jq should be available on PATH" {
run jq --version
[ "$status" -eq 0 ]
}
Loading