mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
40 lines
998 B
Nix
40 lines
998 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "mongodb_exporter";
|
|
version = "0.42.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "percona";
|
|
repo = "mongodb_exporter";
|
|
rev = "v${version}";
|
|
hash = "sha256-cxC60kV95B2fcD6fuqWe0+KEVhcwWuaUDKpcmaQshO0=";
|
|
};
|
|
|
|
vendorHash = "sha256-/aSP4bn4wiJtgLKKfdLTYl2FLUatrV02wAZZfzJwVqw=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
"-X main.commit=${src.rev}"
|
|
"-X main.Branch=unknown"
|
|
"-X main.buildDate=unknown"
|
|
];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
# those check depends on docker;
|
|
# nixpkgs doesn't have mongodb application available;
|
|
doCheck = false;
|
|
|
|
meta = with lib;
|
|
{
|
|
description = "Prometheus exporter for MongoDB including sharding, replication and storage engines";
|
|
homepage = "https://github.com/percona/mongodb_exporter";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ undefined-moe ];
|
|
mainProgram = "mongodb_exporter";
|
|
};
|
|
}
|