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

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

28 lines
625 B
Nix
Raw Normal View History

2022-03-12 10:01:28 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2022-03-03 21:57:11 +00:00
buildGoModule rec {
pname = "endlessh-go";
2022-03-12 07:33:30 +00:00
version = "20220308.1";
2022-03-03 21:57:11 +00:00
src = fetchFromGitHub {
owner = "shizunge";
repo = "endlessh-go";
rev = version;
2022-03-12 10:01:28 +00:00
hash = "sha256-U+h/WmTVwwUIBEOiNa/EKS6HvkeoGNmP3NpeP1fcqYw=";
2022-03-03 21:57:11 +00:00
};
2022-03-12 10:01:28 +00:00
2022-03-03 21:57:11 +00:00
vendorSha256 = "sha256-h/DpbXO+LUsB9NOAXUfNx3VOfEsiolfBEMBrAqVlU3A=";
2022-03-12 10:01:28 +00:00
2022-03-03 21:57:11 +00:00
proxyVendor = true;
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";
license = licenses.gpl3Plus;
2022-03-03 21:57:11 +00:00
maintainers = with maintainers; [ azahi ];
};
}