3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #71306 from marsam/update-prometheus

prometheus: 2.13.0 -> 2.13.1
This commit is contained in:
Mario Rodas 2019-10-18 22:11:03 -05:00 committed by GitHub
commit de5f293365
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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