about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-11-22 18:14:23 +0100
committerGitHub <noreply@github.com>2019-11-22 18:14:23 +0100
commit95221393ea42c8d5cdf70fd8dab47e159c9ce890 (patch)
tree1ae94537dfd8517476c24c9c7267d33c40cfd424 /pkgs/servers
parenta71f28f000ad0d3c2ffdb50d693d3b1764d0d8a1 (diff)
parent693c27b111acde0640a345da1a4e5b62b2523f6f (diff)
downloadnixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar.gz
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar.bz2
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar.lz
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar.xz
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.tar.zst
nixlib-95221393ea42c8d5cdf70fd8dab47e159c9ce890.zip
Merge pull request #73862 from mmahut/loki
grafana-loki: 0.4.0 -> 1.0.0
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/monitoring/loki/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/monitoring/loki/default.nix b/pkgs/servers/monitoring/loki/default.nix
index 96e583942dd0..9bc4223b5d66 100644
--- a/pkgs/servers/monitoring/loki/default.nix
+++ b/pkgs/servers/monitoring/loki/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }:
 
 buildGoPackage rec {
-  version = "0.4.0";
+  version = "1.0.0";
   pname = "grafana-loki";
   goPackagePath = "github.com/grafana/loki";
 
@@ -11,7 +11,7 @@ buildGoPackage rec {
     rev = "v${version}";
     owner = "grafana";
     repo = "loki";
-    sha256 = "1anwq5dbh29dma18hnialbb253ciazzxmnqvympbh29ricldcf8p";
+    sha256 = "0qqmxrbiph268i5c8i6wpcihspdcglfxd4hy6ag03bl66rciq8nb";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -23,10 +23,10 @@ buildGoPackage rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "Like Prometheus, but for logs.";
+    description = "Like Prometheus, but for logs";
     license = licenses.asl20;
     homepage = "https://grafana.com/loki";
-    maintainers = with maintainers; [ willibutz globin ];
+    maintainers = with maintainers; [ willibutz globin mmahut ];
     platforms = platforms.linux;
   };
 }