nixfiles/packages/nf-actions-test/default.nix

13 lines
175 B
Nix

{
wrapShellScriptBin,
pkgs,
}:
wrapShellScriptBin "nf-actions-test" ./actions-test.sh {
depsRuntimePath = with pkgs; [
git
cachix
jq
nix
curl
];
}