goplantuml: init at 1.6.2 (#415408)

This commit is contained in:
Aleksana
2025-06-11 14:14:27 +08:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
+5
View File
@@ -15504,6 +15504,11 @@
githubId = 952712;
name = "Matt Christ";
};
matteobongio = {
github = "matteobongio";
githubId = 155063357;
name = "Matteo Bongiovanni";
};
matteopacini = {
email = "m@matteopacini.me";
github = "matteo-pacini";
+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";
};
}