mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
13 lines
175 B
Nix
13 lines
175 B
Nix
{
|
|
wrapShellScriptBin,
|
|
pkgs,
|
|
}:
|
|
wrapShellScriptBin "nf-actions-test" ./actions-test.sh {
|
|
depsRuntimePath = with pkgs; [
|
|
git
|
|
cachix
|
|
jq
|
|
nix
|
|
curl
|
|
];
|
|
}
|