prometheus: 2.13.0 -> 2.13.1
Changelog: https://github.com/prometheus/prometheus/releases/tag/v2.13.1
This commit is contained in:
parent
5617886b16
commit
096558a0f6
1 changed files with 3 additions and 6 deletions
|
@ -1,19 +1,16 @@
|
||||||
{ lib, go, buildGoPackage, fetchFromGitHub }:
|
{ lib, go, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
let
|
|
||||||
goPackagePath = "github.com/prometheus/prometheus";
|
|
||||||
in
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "prometheus";
|
pname = "prometheus";
|
||||||
version = "2.13.0";
|
version = "2.13.1";
|
||||||
|
|
||||||
inherit goPackagePath;
|
goPackagePath = "github.com/prometheus/prometheus";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "prometheus";
|
owner = "prometheus";
|
||||||
repo = "prometheus";
|
repo = "prometheus";
|
||||||
sha256 = "08fmicgrv9b37qapmqjbif19c9181mpp7abd2yrpc3xpyjd3h687";
|
sha256 = "055qliv683b87dwj7pkprdpjgyp6s4s3cwvpbsl1gxidhlr4y69b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildFlagsArray = let
|
buildFlagsArray = let
|
||||||
|
|
Loading…
Reference in a new issue