goat: unstable-2022-08-15 -> 0-unstable-2024-07-31 (#338137)

This commit is contained in:
Paul Meyer 2024-09-09 09:11:10 +02:00 committed by GitHub
commit 1bd94f17f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule {
pname = "goat";
version = "unstable-2022-08-15"; # Upstream currently isn't doing tags/releases.
version = "0-unstable-2024-07-31"; # Upstream currently isn't doing tags/releases.
src = fetchFromGitHub {
owner = "blampe";
repo = "goat";
rev = "07bb911fe3106cc3c1d1097318a9fffe816b59fe";
hash = "sha256-gSSDp9Q2hGH85dkE7RoER5ig+Cz1oSOD0FNRBeTZM4U=";
rev = "177de93b192b8ffae608e5d9ec421cc99bf68402";
hash = "sha256-/DR6RN7dCROp18P7dgm4DMppwdtYl0AOVNMEtXz8ldk=";
};
vendorHash = "sha256-24YllmSUzRcqWbJ8NLyhsJaoGG2+yE8/eXX6teJ1nV8=";
meta = with lib; {
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
meta = {
description = "Go ASCII Tool. Render ASCII art as SVG diagrams";
homepage = "https://github.com/blampe/goat";
license = licenses.mit;
maintainers = with maintainers; [ katexochen ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ katexochen ];
mainProgram = "goat";
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
}