pgmetrics: 1.6.1 -> 1.6.2

This commit is contained in:
Mario Rodas
2019-04-21 23:00:00 -05:00
parent 54084dd821
commit 64ed902a33
2 changed files with 7 additions and 93 deletions
+7 -9
View File
@@ -1,19 +1,17 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "pgmetrics";
version = "1.6.1";
goPackagePath = "github.com/rapidloop/pgmetrics";
version = "1.6.2";
src = fetchFromGitHub {
owner = "rapidloop";
repo = "pgmetrics";
rev = "refs/tags/v${version}";
sha256 = "0dj4b4gghzzwnzb0fdix1ps97scfr24f6dfa7d0vwak95ds5vz3s";
repo = pname;
rev = "v${version}";
sha256 = "06yqv6a6p7h10rkp95ssifzqp2h2j0vlm57hliyi94jxd8srgwh5";
};
goDeps = ./deps.nix;
modSha256 = "0llbx2sgcx95ym2q4l3334rdj3nkgr9z5jyp8406cp3k1ixi7gdb";
meta = with stdenv.lib; {
homepage = https://pgmetrics.io/;