From 20a8349d625814d6c7d9ad39f2b83a2a02e999f5 Mon Sep 17 00:00:00 2001 From: Aristid Breitkreuz Date: Sat, 18 Jun 2016 22:24:31 +0200 Subject: Revert "Merge pull request #16172 from zimbatm/influxdb-0.13.0" This reverts commit ed4869452defbc317cca130512b6d67c380fb908, reversing changes made to 175e20ca5cc9540a1fb6be5c1630e5df56015dd6. --- pkgs/servers/nosql/influxdb/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'pkgs/servers/nosql/influxdb/default.nix') 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; }; } -- cgit 1.4.1