goat: unstable-2022-08-15 -> 0-unstable-2024-07-31

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>

+15 -10
+15 -10
pkgs/by-name/go/goat/package.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + nix-update-script, 4 6 }: 7 + 5 8 buildGoModule { 6 9 pname = "goat"; 7 - version = "unstable-2022-08-15"; # Upstream currently isn't doing tags/releases. 10 + version = "0-unstable-2024-07-31"; # Upstream currently isn't doing tags/releases. 8 11 9 12 src = fetchFromGitHub { 10 13 owner = "blampe"; 11 14 repo = "goat"; 12 - rev = "07bb911fe3106cc3c1d1097318a9fffe816b59fe"; 13 - hash = "sha256-gSSDp9Q2hGH85dkE7RoER5ig+Cz1oSOD0FNRBeTZM4U="; 15 + rev = "177de93b192b8ffae608e5d9ec421cc99bf68402"; 16 + hash = "sha256-/DR6RN7dCROp18P7dgm4DMppwdtYl0AOVNMEtXz8ldk="; 14 17 }; 15 18 16 19 vendorHash = "sha256-24YllmSUzRcqWbJ8NLyhsJaoGG2+yE8/eXX6teJ1nV8="; 17 20 18 - meta = with lib; { 21 + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; 22 + 23 + meta = { 19 24 description = "Go ASCII Tool. Render ASCII art as SVG diagrams"; 20 25 homepage = "https://github.com/blampe/goat"; 21 - license = licenses.mit; 22 - maintainers = with maintainers; [ katexochen ]; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ katexochen ]; 23 28 mainProgram = "goat"; 24 - platforms = platforms.unix; 29 + platforms = lib.platforms.unix; 25 30 }; 26 31 }