prometheus-blackbox-exporter: 0.18.0 -> 0.19.0

This commit is contained in:
Robin Gloster 2021-05-10 22:55:19 -05:00
parent 8a697bdc73
commit 7ea82280af
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -1,19 +1,18 @@
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoPackage rec {
buildGoModule rec {
pname = "blackbox_exporter";
version = "0.18.0";
rev = version;
goPackagePath = "github.com/prometheus/blackbox_exporter";
version = "0.19.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "blackbox_exporter";
sha256 = "1h4s0ww1drh14slrj9m7mx224qx9c6hyjav8sj959r75902i9491";
sha256 = "1lrabbp6nsd9h3hs3y5a37yl4g8zzkv0m3vhz2vrir3wmfn07n4g";
};
vendorSha256 = "1wi9dmbxb6i1qglnp1v0lkqpp7l29lrbsg4lvx052nkcwkgq8g1y";
# dns-lookup is performed for the tests
doCheck = false;