ark/bud/default.nix
2022-02-18 20:31:01 +03:00

18 lines
290 B
Nix

{
pkgs,
lib,
budUtils,
...
}:
{
bud.cmds =
with pkgs; {
get = {
writer = budUtils.writeBashWithPaths [nixUnstable git coreutils];
synopsis = "get [DEST]";
help = "Copy the desired template to DEST";
script = ./get.bash;
};
};
}