Merge pull request #39971 from WilliButz/update-postfix-exporter
prometheus-postfix-exporter: 0.1.1 -> 0.1.2
This commit is contained in:
commit
026dc16b85
2 changed files with 35 additions and 29 deletions
|
@ -9,31 +9,13 @@
|
||||||
sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3";
|
sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
|
||||||
goPackagePath = "github.com/coreos/go-systemd";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/coreos/go-systemd";
|
|
||||||
rev = "d1b7d058aa2adfc795ad17ff4aaa2bc64ec11c78";
|
|
||||||
sha256 = "1nz3v1b90hnmj2vjjwq96pr6psxlndqjyd30v9sgiwygzb7db9mv";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/coreos/pkg";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/coreos/pkg";
|
|
||||||
rev = "97fdf19511ea361ae1c100dd393cc47f8dcfa1e1";
|
|
||||||
sha256 = "1srn87wih25l09f75483hnxsr8fc6rq3bk7w1x8125ym39p6mg21";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
goPackagePath = "github.com/golang/protobuf";
|
goPackagePath = "github.com/golang/protobuf";
|
||||||
fetch = {
|
fetch = {
|
||||||
type = "git";
|
type = "git";
|
||||||
url = "https://github.com/golang/protobuf";
|
url = "https://github.com/golang/protobuf";
|
||||||
rev = "e09c5db296004fbe3f74490e84dcd62c3c5ddb1b";
|
rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265";
|
||||||
sha256 = "1acnmalkqwrq6k3l71c4pyws0zn18r2609kqaq55lhbdcjgzid31";
|
sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -68,8 +50,8 @@
|
||||||
fetch = {
|
fetch = {
|
||||||
type = "git";
|
type = "git";
|
||||||
url = "https://github.com/prometheus/common";
|
url = "https://github.com/prometheus/common";
|
||||||
rev = "d0f7cd64bda49e08b22ae8a730aa57aa0db125d6";
|
rev = "d811d2e9bf898806ecfb6ef6296774b13ffc314c";
|
||||||
sha256 = "1d4hfbb66xsf0wq317fwhgrwakqzhvryw4d7ip851lwrpql5fqcx";
|
sha256 = "0r4067r4ysmljksqw3awcxx5qplqhykahc5igdzgkky7i4bvaik1";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
{ stdenv, buildGoPackage, fetchFromGitHub, systemd, makeWrapper }:
|
{ stdenv, buildGoPackage, fetchFromGitHub, systemd, makeWrapper
|
||||||
|
, withSystemdSupport ? true }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
name = "postfix_exporter-${version}";
|
name = "postfix_exporter-${version}";
|
||||||
version = "0.1.1";
|
version = "0.1.2";
|
||||||
|
|
||||||
goPackagePath = "github.com/kumina/postfix_exporter";
|
goPackagePath = "github.com/kumina/postfix_exporter";
|
||||||
|
|
||||||
|
@ -10,20 +13,41 @@ buildGoPackage rec {
|
||||||
owner = "kumina";
|
owner = "kumina";
|
||||||
repo = "postfix_exporter";
|
repo = "postfix_exporter";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1p2j66jzzgyv2w832pw57g02vrac6ldrblqllgwyy0i8krb3ibyz";
|
sha256 = "1b9ib3scxni6hlw55wv6f0z1xfn27l0p29as24f71rs70pyzy4hm";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = optional withSystemdSupport makeWrapper;
|
||||||
buildInputs = [ systemd ];
|
buildInputs = optional withSystemdSupport systemd;
|
||||||
|
buildFlags = optional (!withSystemdSupport) "-tags nosystemd";
|
||||||
|
|
||||||
goDeps = ./postfix-exporter-deps.nix;
|
goDeps = ./postfix-exporter-deps.nix;
|
||||||
|
extraSrcs = optionals withSystemdSupport [
|
||||||
|
{
|
||||||
|
goPackagePath = "github.com/coreos/go-systemd";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "coreos";
|
||||||
|
repo = "go-systemd";
|
||||||
|
rev = "d1b7d058aa2adfc795ad17ff4aaa2bc64ec11c78";
|
||||||
|
sha256 = "1nz3v1b90hnmj2vjjwq96pr6psxlndqjyd30v9sgiwygzb7db9mv";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
goPackagePath = "github.com/coreos/pkg";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "coreos";
|
||||||
|
repo = "pkg";
|
||||||
|
rev = "97fdf19511ea361ae1c100dd393cc47f8dcfa1e1";
|
||||||
|
sha256 = "1srn87wih25l09f75483hnxsr8fc6rq3bk7w1x8125ym39p6mg21";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = optionalString withSystemdSupport ''
|
||||||
wrapProgram $bin/bin/postfix_exporter \
|
wrapProgram $bin/bin/postfix_exporter \
|
||||||
--prefix LD_LIBRARY_PATH : "${systemd.lib}/lib"
|
--prefix LD_LIBRARY_PATH : "${systemd.lib}/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage;
|
||||||
description = "A Prometheus exporter for Postfix";
|
description = "A Prometheus exporter for Postfix";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
Loading…
Reference in a new issue