2016-10-26 13:21:50 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, }:
|
2015-11-16 11:59:30 +00:00
|
|
|
|
2016-06-06 01:28:52 +01:00
|
|
|
buildGoPackage rec {
|
2016-06-12 14:38:11 +01:00
|
|
|
name = "influxdb-${version}";
|
2016-10-26 13:21:50 +01:00
|
|
|
version = "1.0.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "influxdata";
|
|
|
|
repo = "influxdb";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0z8y995gm2hpxny7l5nx5fjc5c26hfgvghwmzva8d1mrlnapcsyc";
|
|
|
|
};
|
2016-06-12 14:38:11 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/influxdata/influxdb";
|
2015-11-16 11:59:30 +00:00
|
|
|
|
|
|
|
excludedPackages = "test";
|
2014-05-26 10:12:38 +01:00
|
|
|
|
2016-10-26 13:21:50 +01:00
|
|
|
# Generated with the nix2go
|
2016-09-10 11:04:13 +01:00
|
|
|
goDeps = ./. + builtins.toPath "/deps-${version}.nix";
|
2014-05-26 10:12:38 +01:00
|
|
|
|
2015-11-16 11:59:30 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An open-source distributed time series database";
|
2014-05-26 10:12:38 +01:00
|
|
|
license = licenses.mit;
|
2015-11-16 11:59:30 +00:00
|
|
|
homepage = https://influxdb.com/;
|
2016-06-12 14:38:11 +01:00
|
|
|
maintainers = with maintainers; [ offline zimbatm ];
|
2015-11-18 10:33:50 +00:00
|
|
|
platforms = platforms.linux;
|
2014-05-26 10:12:38 +01:00
|
|
|
};
|
|
|
|
}
|