Skip to content

Commit

Permalink
prometheus-nextcloud-exporter: use tagged version
Browse files Browse the repository at this point in the history
The tag was not pushed when this exporter was added to nixpkgs.
The source hash remains the same, because the tag refers to the
same revision.
  • Loading branch information
WilliButz committed Oct 13, 2019
1 parent 555392b commit 05ed82e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/servers/monitoring/prometheus/nextcloud-exporter.nix
@@ -1,13 +1,13 @@
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage {
buildGoPackage rec {
pname = "prometheus-nextcloud-exporter";
version = "unstable-2019-10-12";
version = "0.1.0";

src = fetchFromGitHub {
owner = "xperimental";
repo = "nextcloud-exporter";
rev = "215c8b6b2daa3125798d883fe222bc419240e7ab";
rev = "v${version}";
sha256 = "1xpc6q6zp92ckkyd24cfl65vyzjv60qwh44ys6mza4k6yrxhacv4";
};

Expand Down

0 comments on commit 05ed82e

Please sign in to comment.