prometheus: 2.13.0 -> 2.13.1

Changelog: https://github.com/prometheus/prometheus/releases/tag/v2.13.1
This commit is contained in:
Mario Rodas 2019-10-17 18:00:00 -05:00
parent 5617886b16
commit 096558a0f6
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -1,19 +1,16 @@
{ lib, go, buildGoPackage, fetchFromGitHub }:
let
goPackagePath = "github.com/prometheus/prometheus";
in
buildGoPackage rec {
pname = "prometheus";
version = "2.13.0";
version = "2.13.1";
inherit goPackagePath;
goPackagePath = "github.com/prometheus/prometheus";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "prometheus";
sha256 = "08fmicgrv9b37qapmqjbif19c9181mpp7abd2yrpc3xpyjd3h687";
sha256 = "055qliv683b87dwj7pkprdpjgyp6s4s3cwvpbsl1gxidhlr4y69b";
};
buildFlagsArray = let