about summary refs log tree commit diff
path: root/pkgs/servers/monitoring
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-10-01 05:46:49 -0500
committerGitHub <noreply@github.com>2020-10-01 05:46:49 -0500
commit6aa4df7f451934ee68f3a6329582a05e048a010a (patch)
tree867cbfa896295830b497c97aa999863156aac1f5 /pkgs/servers/monitoring
parent25666f9d246a360e41c36279f849e20e721c9e05 (diff)
parent04a8c8aa24bcfa8e6b12699bd8cb18afd145ae89 (diff)
Merge pull request #99179 from 0x4A6F/master-promscale
timescale-prometheus -> promscale: 0.1.0-beta.4 -> 0.1.0-beta.5
Diffstat (limited to 'pkgs/servers/monitoring')
-rw-r--r--pkgs/servers/monitoring/prometheus/promscale.nix (renamed from pkgs/servers/monitoring/timescale-prometheus/default.nix)8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/monitoring/timescale-prometheus/default.nix b/pkgs/servers/monitoring/prometheus/promscale.nix
index 6a0383610eb69..71ffd67f1739b 100644
--- a/pkgs/servers/monitoring/timescale-prometheus/default.nix
+++ b/pkgs/servers/monitoring/prometheus/promscale.nix
@@ -4,8 +4,8 @@
 }:
 
 buildGoModule rec {
-  pname = "timescale-prometheus";
-  version = "0.1.0-beta.4";
+  pname = "promscale";
+  version = "0.1.0-beta.5";
 
   src = fetchFromGitHub {
     owner = "timescale";
@@ -16,13 +16,13 @@ buildGoModule rec {
 
   vendorSha256 = "sha256:0y5rq2y48kf2z1z3a8ags6rqzfvjs54klk2679fk8x0yjamj5x04";
 
-  buildFlagsArray = [ "-ldflags=-s -w -X github.com/timescale/timescale-prometheus/pkg/version.Version=${version} -X github.com/timescale/timescale-prometheus/pkg/version.CommitHash=${src.rev}" ];
+  buildFlagsArray = [ "-ldflags=-s -w -X github.com/timescale/promscale/pkg/version.Version=${version} -X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}" ];
 
   doCheck = false;
 
   meta = with stdenv.lib; {
     description = "An open-source analytical platform for Prometheus metrics";
-    homepage = "https://github.com/timescale/timescale-prometheus";
+    homepage = "https://github.com/timescale/promscale";
     license = licenses.asl20;
     platforms = platforms.unix;
     maintainers = with maintainers; [ _0x4A6F ];