fosrl-olm: init at 1.0.0

This commit is contained in:
jack
2025-08-03 17:30:07 +02:00
committed by Jack Rosenberg
parent 6027c30c8e
commit 2d600db3af
+38
View File
@@ -0,0 +1,38 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "olm";
version = "1.0.0";
src = fetchFromGitHub {
owner = "fosrl";
repo = "olm";
tag = version;
hash = "sha256-a0gkEo5EuJpHpZ5fKAPBXSTRvZaQo6KOJu4Abi1EztU=";
};
vendorHash = "sha256-Ms8tLFKIa8GqmyFI7o+sQEpsZghNPIpq8BRCoY89Org=";
ldflags = [
"-s"
"-w"
];
doInstallCheck = true;
meta = {
description = "Tunneling client for Pangolin";
homepage = "https://github.com/fosrl/olm";
changelog = "https://github.com/fosrl/olm/releases/tag/${src.tag}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
jackr
sigmasquadron
];
mainProgram = "olm";
};
}