18 lines
290 B
Nix
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;
|
|
};
|
|
};
|
|
}
|