tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
prometheus-domain-exporter: 1.17.1 -> 1.21.1
Peter Hoeg
2 years ago
974a6582
14d96ff6
+3
-11
1 changed file
expand all
collapse all
unified
split
pkgs
servers
monitoring
prometheus
domain-exporter.nix
+3
-11
pkgs/servers/monitoring/prometheus/domain-exporter.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "domain-exporter";
5
5
-
version = "1.17.1";
5
5
+
version = "1.21.1";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "caarlos0";
9
9
repo = "domain_exporter";
10
10
rev = "v${version}";
11
11
-
hash = "sha256-18r+jUdVcv7hA9KdWkgvu2tNUIGf9f1uj2cwwMDnAs8=";
11
11
+
hash = "sha256-qZle54BxKdPuVFNEGmXBNU93yF/MESUnW1a24BRxlZ8=";
12
12
};
13
13
14
14
-
patches = [
15
15
-
(fetchpatch {
16
16
-
url = "https://github.com/caarlos0/domain_exporter/commit/32815b0956056c5c14313d0b860d1e9db754e545.patch";
17
17
-
hash = "sha256-iEYnJ4BU+MWQd0BgKmRb8RNj/lH2V/Z9uwFS2muR4Go=";
18
18
-
name = "sg_domains.patch";
19
19
-
})
20
20
-
];
21
21
-
22
22
-
vendorSha256 = "sha256-LHs2DSLNe+E3NUXZS7TV5M53ueUbCjjNM87UPRTaCpo=";
14
14
+
vendorHash = "sha256-UO4fCJD3PldU2wQ9264OLKHP10c0pKPsOc/8gP5ddW4=";
23
15
24
16
doCheck = false; # needs internet connection
25
17