forked from mirrors/nixpkgs
Merge pull request #71306 from marsam/update-prometheus
prometheus: 2.13.0 -> 2.13.1
This commit is contained in:
commit
de5f293365
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue