calendar to derek

This commit is contained in:
2026-01-07 21:01:24 +00:00
parent bf7e5aee42
commit 9c3a56c7cc
13 changed files with 178 additions and 40 deletions

24
overlays/sonoscli.nix Normal file
View File

@@ -0,0 +1,24 @@
{inputs}: final: prev: {
sonoscli = prev.buildGoModule rec {
pname = "sonoscli";
version = "0.1.0";
src = prev.fetchFromGitHub {
owner = "steipete";
repo = "sonoscli";
rev = "v${version}";
hash = "sha256-9ouRJ0Rr+W5Kx9BltgW29Jo1Jq7Hb/un4XBkq+0in9o=";
};
vendorHash = "sha256-hocnLCzWN8srQcO3BMNkd2lt0m54Qe7sqAhUxVZlz1k=";
subPackages = ["cmd/sonos"];
meta = with prev.lib; {
description = "Control SONOS speakers from your terminal";
homepage = "https://github.com/steipete/sonoscli";
license = licenses.mit;
mainProgram = "sonos";
};
};
}