nix-config/packages/default.nix
Oliver Davies adfe90c99b
All checks were successful
/ check (push) Successful in 1m38s
Add get-tags and count-tags scripts
Add `get-tags` and `count-tags` scripts to get and count Git tags within
a repository, including the ability to filter tags - e.g. only get or
count tags that begin with a certain date.
2025-07-11 12:28:42 +01:00

34 lines
1.3 KiB
Nix

{ pkgs, prev, ... }:
let
inherit (pkgs) callPackage;
vimPlugins = callPackage ./vim-plugins { };
in
{
_timer = callPackage ./_timer.nix { };
backup-websites = callPackage ./backup-websites.nix { };
build-glove80 = callPackage ./build-glove80.nix { };
count-tags = callPackage ./count-tags.nix { };
create-script = callPackage ./create-script.nix { };
dev-commit = callPackage ./dev-commit.nix { };
displayselect = callPackage ./displayselect { };
get-tags = callPackage ./get-tags.nix { };
git-graph = callPackage ./git-graph.nix { };
mounter = callPackage ./mounter.nix { };
move-firefox-screenshots = callPackage ./move-firefox-screenshots.nix { };
notes = callPackage ./notes { };
passmenu-otp = callPackage ./passmenu-otp.nix { };
setbg = callPackage ./setbg.nix { };
tag-release = callPackage ./tag-release.nix { };
time-until = callPackage ./time-until.nix { };
timer = callPackage ./timer.nix { };
tmux-sessionizer = callPackage ./tmux-sessionizer { };
todos-add = callPackage ./todos-add.nix { };
todos-edit = callPackage ./todos-edit.nix { };
unmounter = callPackage ./unmounter.nix { };
update-all-git-repos = callPackage ./update-all-git-repos.nix { };
vix = callPackage ./vix.nix { };
vimPlugins = prev.vimPlugins // vimPlugins;
}