+3
-3
pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix
+3
-3
pkgs/servers/monitoring/prometheus/gitlab-ci-pipelines-exporter.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "gitlab-ci-pipelines-exporter";
5
-
version = "0.5.4";
5
+
version = "0.5.5";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "mvisonneau";
9
9
repo = pname;
10
10
rev = "v${version}";
11
-
sha256 = "sha256-sVXLcz//1RLYOmKtH6u4tCPS8oqV0vOkmQLpWNBiUQY=";
11
+
sha256 = "sha256-TeXEfcmDHKgy5mGdixrIecxKO1rrg7+EWRIqzMYh3sU=";
12
12
};
13
13
14
14
subPackages = [ "cmd/${pname}" ];
···
17
17
"-X main.version=v${version}"
18
18
];
19
19
20
-
vendorSha256 = "sha256-uyjj0Yh/bIvWvh76TEasgjJg9Dgj/GHgn3BOsO2peT0=";
20
+
vendorHash = "sha256-TXFwfqyvCAEn24vtUBcFABzIg0KaYlstiFwS7y6WbKo=";
21
21
doCheck = true;
22
22
23
23
meta = with lib; {