2016-06-06 00:28:52 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2015-11-16 11:59:30 +00:00
|
|
|
|
2016-06-06 00:28:52 +00:00
|
|
|
buildGoPackage rec {
|
2016-06-18 20:24:31 +00:00
|
|
|
name = "influxdb-${rev}";
|
|
|
|
rev = "v0.9.4";
|
|
|
|
goPackagePath = "github.com/influxdb/influxdb";
|
2015-11-16 11:59:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-06-18 20:24:31 +00:00
|
|
|
inherit rev;
|
|
|
|
owner = "influxdb";
|
2015-11-16 11:59:30 +00:00
|
|
|
repo = "influxdb";
|
2016-06-18 20:24:31 +00:00
|
|
|
sha256 = "0yarymppnlpf2xab57i8jx595v47s5mdwnf13719mc1fv3q84yqn";
|
2014-05-26 09:12:38 +00:00
|
|
|
};
|
|
|
|
|
2015-11-16 11:59:30 +00:00
|
|
|
excludedPackages = "test";
|
2014-05-26 09:12:38 +00:00
|
|
|
|
2016-06-06 00:28:52 +00:00
|
|
|
goDeps = ./deps.json;
|
2014-05-26 09:12:38 +00:00
|
|
|
|
2015-11-16 11:59:30 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An open-source distributed time series database";
|
2014-05-26 09:12:38 +00:00
|
|
|
license = licenses.mit;
|
2015-11-16 11:59:30 +00:00
|
|
|
homepage = https://influxdb.com/;
|
2016-06-18 20:24:31 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2015-11-18 10:33:50 +00:00
|
|
|
platforms = platforms.linux;
|
2014-05-26 09:12:38 +00:00
|
|
|
};
|
|
|
|
}
|