summary refs log tree commit diff
path: root/pkgs/servers/nosql/influxdb/default.nix
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2016-06-18 22:24:31 +0200
committerAristid Breitkreuz <aristidb@gmail.com>2016-06-18 22:24:31 +0200
commit20a8349d625814d6c7d9ad39f2b83a2a02e999f5 (patch)
treebe4e09757078e0a19ea6d8528d3fdfc2e0feebd2 /pkgs/servers/nosql/influxdb/default.nix
parent483077a4410b535082ad3f21ee585a03efce3c70 (diff)
downloadnixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar.gz
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar.bz2
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar.lz
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar.xz
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.tar.zst
nixlib-20a8349d625814d6c7d9ad39f2b83a2a02e999f5.zip
Revert "Merge pull request #16172 from zimbatm/influxdb-0.13.0"
This reverts commit ed4869452defbc317cca130512b6d67c380fb908, reversing
changes made to 175e20ca5cc9540a1fb6be5c1630e5df56015dd6.
Diffstat (limited to 'pkgs/servers/nosql/influxdb/default.nix')
-rw-r--r--pkgs/servers/nosql/influxdb/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix
index 9f119b3f1389..1372b6a3fc36 100644
--- a/pkgs/servers/nosql/influxdb/default.nix
+++ b/pkgs/servers/nosql/influxdb/default.nix
@@ -1,29 +1,26 @@
 { lib, buildGoPackage, fetchFromGitHub }:
 
 buildGoPackage rec {
-  name = "influxdb-${version}";
-  version = "0.13.0";
-
-  goPackagePath = "github.com/influxdata/influxdb";
+  name = "influxdb-${rev}";
+  rev = "v0.9.4";
+  goPackagePath = "github.com/influxdb/influxdb";
 
   src = fetchFromGitHub {
-    owner = "influxdata";
+    inherit rev;
+    owner = "influxdb";
     repo = "influxdb";
-    rev = "v${version}";
-    sha256 = "0f7af5jb1f65qnslhc7zccml1qvk6xx5naczqfsf4s1zc556fdi4";
+    sha256 = "0yarymppnlpf2xab57i8jx595v47s5mdwnf13719mc1fv3q84yqn";
   };
 
   excludedPackages = "test";
 
-  # Generated with the `gdm2nix.rb` script and the `Godeps` file from the
-  # influxdb repo root.
   goDeps = ./deps.json;
 
   meta = with lib; {
     description = "An open-source distributed time series database";
     license = licenses.mit;
     homepage = https://influxdb.com/;
-    maintainers = with maintainers; [ offline zimbatm ];
+    maintainers = with maintainers; [ offline ];
     platforms = platforms.linux;
   };
 }