nixpkgs/pkgs/servers/endlessh-go/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
770 B
Nix
Raw Normal View History

2022-03-12 10:01:28 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
2022-09-23 20:39:38 +00:00
, nixosTests
2022-03-12 10:01:28 +00:00
}:
2022-03-03 21:57:11 +00:00
buildGoModule rec {
pname = "endlessh-go";
2023-06-30 12:17:49 +00:00
version = "20230625-3";
2022-03-03 21:57:11 +00:00
src = fetchFromGitHub {
owner = "shizunge";
repo = "endlessh-go";
rev = version;
2023-06-30 12:17:49 +00:00
sha256 = "sha256-ug01nwlUCKe7DkhSJJ9XUU4QHZeH0A2f/oH6wl2VzIc=";
2022-03-03 21:57:11 +00:00
};
2022-03-12 10:01:28 +00:00
2023-06-30 12:17:49 +00:00
vendorHash = "sha256-n7lzSLtR3bUslT6Q1khsFeofSvwuSaBv3n33+HIdssU=";
2022-03-03 21:57:11 +00:00
2022-07-16 15:38:34 +00:00
ldflags = [ "-s" "-w" ];
2022-09-23 20:39:38 +00:00
passthru.tests = nixosTests.endlessh-go;
2022-03-03 21:57:11 +00:00
meta = with lib; {
description = "An implementation of endlessh exporting Prometheus metrics";
2022-03-12 10:01:28 +00:00
homepage = "https://github.com/shizunge/endlessh-go";
2022-07-16 15:38:34 +00:00
changelog = "https://github.com/shizunge/endlessh-go/releases/tag/${version}";
2022-03-12 10:01:28 +00:00
license = licenses.gpl3Plus;
2022-03-03 21:57:11 +00:00
maintainers = with maintainers; [ azahi ];
};
}