goplantuml: init at 1.6.2

This commit is contained in:
Matteo Bongiovanni
2025-06-10 09:23:35 +02:00
parent 30638c6603
commit 016add8eff
+27
View File
@@ -0,0 +1,27 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "goplantuml";
version = "1.6.2";
src = fetchFromGitHub {
owner = "jfeliu007";
repo = "goplantuml";
tag = "v${version}";
hash = "sha256-OnCAqws27e7WsXKmw0clH9Qek+6LNeu2UGD9sKaV4+I=";
};
vendorHash = null;
meta = {
changelog = "https://github.com/jfeliu007/goplantuml/releases/tag/v${version}";
description = "PlantUML Class Diagram Generator for golang projects";
homepage = "https://github.com/jfeliu007/goplantuml";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
matteobongio
];
mainProgram = "goplantuml";
};
}