mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
26 lines
729 B
Nix
26 lines
729 B
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "script_exporter";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adhocteam";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-t/xgRalcHxEcT1peU1ePJUItD02rQdfz1uWpXDBo6C0=";
|
|
};
|
|
|
|
vendorHash = "sha256-Hs1SNpC+t1OCcoF3FBgpVGkhR97ulq6zYhi8BQlgfVc=";
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) script; };
|
|
|
|
meta = with lib; {
|
|
description = "Shell script prometheus exporter";
|
|
mainProgram = "script_exporter";
|
|
homepage = "https://github.com/adhocteam/script_exporter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Flakebi ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|