summary refs log tree commit diff
path: root/pkgs/servers/nosql/influxdb/default.nix
diff options
context:
space:
mode:
authorUnai Zalakain <unai@gisa-elkartea.org>2015-03-05 19:17:58 +0000
committerUnai Zalakain <unai@gisa-elkartea.org>2015-03-05 19:26:49 +0000
commitbf286c587bc851c5d57629feb8fb9358f46bf445 (patch)
tree60518af10417c14414e1e62e5d628005324cface /pkgs/servers/nosql/influxdb/default.nix
parent329de0fa75814cde4eac1aee7f722eaf6312bd0c (diff)
downloadnixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar.gz
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar.bz2
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar.lz
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar.xz
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.tar.zst
nixlib-bf286c587bc851c5d57629feb8fb9358f46bf445.zip
Bump InfluxDB to 0.8.3
- Prevents the automatic creation of shards that was causing too many shards
  being created when used with grafana.
- It's the most recent version that allows updating from 0.7
Diffstat (limited to 'pkgs/servers/nosql/influxdb/default.nix')
-rw-r--r--pkgs/servers/nosql/influxdb/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix
index 03a3a9cd43af..92b1b73d0a0f 100644
--- a/pkgs/servers/nosql/influxdb/default.nix
+++ b/pkgs/servers/nosql/influxdb/default.nix
@@ -4,14 +4,14 @@ assert stdenv.isLinux;
 
 stdenv.mkDerivation rec {
   name = "influxdb-${version}";
-  version = "0.8.2";
+  version = "0.8.3";
   arch = if stdenv.system == "x86_64-linux" then "amd64" else "386";
 
   src = fetchurl {
     url = "http://s3.amazonaws.com/influxdb/${name}.${arch}.tar.gz";
     sha256 = if arch == "amd64" then
-        "0m27agjf9v76w5xms8w3z91k4hxw832nxqr030qzqxynwbxj0vg6" else
-        "0bdjpdq4yhfsmvl756xhkd1d8565d19g66l5rlymksc71ps8kbj6";
+        "e625902d403434c799f9d9ffc2592a3880f82d435423fde7174e5e4fe0f41148" else
+        "5abe9f432553e66c8aff86c4311eba16b874678d04b52bfe9e2019c01059ec78";
   };
 
   buildInputs = [ makeWrapper ];