Skip to content

Commit

Permalink
certstream-server-go: init at 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
x123 committed Nov 28, 2024
1 parent 55f94d9 commit 05a057c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pkgs/by-name/ce/certstream-server-go/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
buildGoModule,
certstream-server-go,
fetchFromGitHub,
lib,
nix-update-script,
testers,
}:
buildGoModule rec {
pname = "certstream-server-go";
version = "1.7.0";

src = fetchFromGitHub {
owner = "d-Rickyy-b";
repo = "certstream-server-go";
rev = "v${version}";
hash = "sha256-iA4kwhGvAkRL0cMCfo0mdQYUZbWk3Y8xdb7jjjTaRFM=";
};

vendorHash = "sha256-S5uF+i5Qsgi3M7B7LbO7CDO2GkWXn4X8wK/hgSSedHo=";

passthru = {
updateScript = nix-update-script { };
};

ldflags = [
"-s"
"-w"
];

meta = {
description = "Drop-in replacement in Golang for the certstream server by Calidog";
homepage = "https://github.com/d-Rickyy-b/certstream-server-go";
changelog = "https://github.com/d-Rickyy-b/certstream-server-go/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ x123 ];
mainProgram = "certstream-server-go";
};
}

0 comments on commit 05a057c

Please sign in to comment.