b95189d754
the commmunity branch was fallen too far behind and there where no contributions to it, anyways. We will start linking usage examples out in the wild, instead.
11 lines
266 B
Nix
11 lines
266 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;
|
|
};
|
|
};
|
|
}
|