1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
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
768 B
Nix
Raw Normal View History

2022-03-12 10:01:28 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
2022-09-23 21:39:38 +01:00
, nixosTests
2022-03-12 10:01:28 +00:00
}:
2022-03-03 21:57:11 +00:00
buildGoModule rec {
pname = "endlessh-go";
2023-03-03 07:05:08 +00:00
version = "20230211";
2022-03-03 21:57:11 +00:00
src = fetchFromGitHub {
owner = "shizunge";
repo = "endlessh-go";
rev = version;
2023-03-03 07:05:08 +00:00
sha256 = "sha256-hG+WIp7JzlHVHjVUouPoocRLpwxWl6hpNorMvc4MsWM=";
2022-03-03 21:57:11 +00:00
};
2022-03-12 10:01:28 +00:00
2023-03-03 07:05:08 +00:00
vendorHash = "sha256-zhkQ3v8oN0hu3siu7yVxsFVTnNvJV59tHGpfXZzE+O4=";
2022-03-03 21:57:11 +00:00
2022-07-16 16:38:34 +01:00
ldflags = [ "-s" "-w" ];
2022-09-23 21:39:38 +01: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 16:38:34 +01: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 ];
};
}