teutat3s
82c9283639
for docker needed, see: https://github.com/NixOS/nix/issues/5777 https://github.com/NixOS/nix/pull/5787
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;
|
|
};
|
|
};
|
|
}
|