Merge pull request #171337 from aaronjheng/prometheus-openldap-exporter
prometheus-openldap-exporter: 2.2.0 -> 2.2.1
This commit is contained in:
commit
a7090ba9c0
1 changed files with 9 additions and 7 deletions
|
@ -1,27 +1,29 @@
|
||||||
{ buildGoPackage, lib, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "openldap_exporter";
|
pname = "openldap_exporter";
|
||||||
version = "2.2.0";
|
version = "2.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tomcz";
|
owner = "tomcz";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-+lrLA9CbGNzvvbwn79ili/kFRCr6vMKDtkvyfnL9n9k=";
|
sha256 = "sha256-ok2fTYz1oQiNdTPsssPb/VuFqny1i8nKTngSpKgCpC4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w"
|
"-s"
|
||||||
|
"-w"
|
||||||
"-X github.com/tomcz/openldap_exporter.tag=v${version}"
|
"-X github.com/tomcz/openldap_exporter.tag=v${version}"
|
||||||
"-X github.com/tomcz/openldap_exporter.commit=unknown"
|
"-X github.com/tomcz/openldap_exporter.commit=unknown"
|
||||||
];
|
];
|
||||||
|
|
||||||
goPackagePath = "github.com/tomcz/openldap_exporter";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/tomcz/openldap_exporter";
|
homepage = "https://github.com/tomcz/openldap_exporter";
|
||||||
description = " Simple service that scrapes metrics from OpenLDAP and exports them via HTTP for Prometheus consumption";
|
description = "Simple service that scrapes metrics from OpenLDAP and exports them via HTTP for Prometheus consumption";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ma27 ];
|
maintainers = with maintainers; [ ma27 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue