mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
endlessh-go: init at 20220213
This commit is contained in:
parent
6979f4920d
commit
aff93f5288
22
pkgs/servers/endlessh-go/default.nix
Normal file
22
pkgs/servers/endlessh-go/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "endlessh-go";
|
||||
version = "20220213";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "shizunge";
|
||||
repo = "endlessh-go";
|
||||
rev = version;
|
||||
sha256 = "sha256-x/38w0GtzYBGWr0ZkfY2HmDEAUI54R833aH0RZSCTC0=";
|
||||
};
|
||||
vendorSha256 = "sha256-h/DpbXO+LUsB9NOAXUfNx3VOfEsiolfBEMBrAqVlU3A=";
|
||||
proxyVendor = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/shizunge/endlessh-go";
|
||||
description = "An implementation of endlessh exporting Prometheus metrics";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ azahi ];
|
||||
};
|
||||
}
|
@ -5203,6 +5203,8 @@ with pkgs;
|
||||
|
||||
endlessh = callPackage ../servers/endlessh { };
|
||||
|
||||
endlessh-go = callPackage ../servers/endlessh-go { };
|
||||
|
||||
ericw-tools = callPackage ../applications/misc/ericw-tools { };
|
||||
|
||||
cryfs = callPackage ../tools/filesystems/cryfs { };
|
||||
|
Loading…
Reference in New Issue
Block a user