11 lines
185 B
Nix
11 lines
185 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "clerie-cleanup-branches";
|
|
text = builtins.readFile ./clerie-cleanup-branches.sh;
|
|
runtimeInputs = with pkgs; [
|
|
git
|
|
];
|
|
}
|
|
|