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";
2022-10-13 07:40:32 +00:00
version = "20221012";
2022-03-03 21:57:11 +00:00
src = fetchFromGitHub {
owner = "shizunge";
repo = "endlessh-go";
rev = version;
2022-10-13 07:40:32 +00:00
sha256 = "sha256-qgwOaqRyMiN3+vnwzwNet7jMQzgmFb09AVfYFwCAQJI=";
2022-03-03 21:57:11 +00:00
};
2022-03-12 10:01:28 +00:00
2022-10-13 07:40:32 +00:00
vendorSha256 = "sha256-8W0yh+/FPIf6M5JipwbpLseKEdo4uVRmtsYYqfkwENU=";
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 ];
};
}