opnborg: init at 0.1.2 (#349726)

This commit is contained in:
Aleksana 2024-10-24 16:28:30 +08:00 committed by GitHub
commit b0cb49dd5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "opnborg";
version = "0.1.2";
src = fetchFromGitHub {
owner = "paepckehh";
repo = "opnborg";
rev = "v${version}";
hash = "sha256-R8yl7dI+VNeY1OVoBo+CN88+2eSePjlzet/Zowj0cQs=";
};
vendorHash = "sha256-REXJryUcu+/AdVx1aK0nJ98Wq/EdhrZqL24kC1wK6mc=";
ldflags = [
"-s"
"-w"
];
meta = {
changelog = "https://github.com/paepckehh/opnborg/releases/tag/v${version}";
homepage = "https://paepcke.de/opnborg";
description = "Sefhosted OPNSense Appliance Backup & Configuration Management Portal";
license = lib.licenses.bsd3;
mainProgram = "opnborg";
maintainers = with lib.maintainers; [ paepcke ];
};
}