ark/bud/default.nix

18 lines
290 B
Nix
Raw Normal View History

2022-02-18 20:31:01 +03:00
{
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;
};
};
}