pub-solar-os/pkgs/bud/default.nix
2021-07-07 21:03:31 -05:00

11 lines
283 B
Nix

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