Hookable is small programs for using arbitrary commands as Claude Code hook decisions.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build(nix): read version from VERSION file; add bump script

Centralize the package version in a top-level VERSION file so the
flake derivation and any future tooling (release automation, CLI
--version output) pull from one place. Adds scripts/bump-version.sh
for major/minor/patch bumps or an explicit version override.

Bumps version to 0.1.1 to cover the meta.mainProgram addition.

+3 -1
+1
VERSION
··· 1 + 0.1.1
+2 -1
flake.nix
··· 18 18 flake.overlays.default = _final: prev: { 19 19 hookable = prev.buildGoModule { 20 20 pname = "hookable"; 21 - version = "0.1.0"; 21 + version = prev.lib.fileContents ./VERSION; 22 22 src = ./.; 23 23 24 24 # Run `nix build`, copy the got hash from the error, and paste it here. ··· 46 46 pkgs.gopls 47 47 pkgs.gotools 48 48 pkgs.delve 49 + pkgs.svu 49 50 ]; 50 51 }; 51 52 };