2016-07-23 01:08:33 +02:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, src, version }:
|
2015-11-16 12:59:30 +01:00
|
|
|
|
2016-06-06 02:28:52 +02:00
|
|
|
buildGoPackage rec {
|
2016-06-12 15:38:11 +02:00
|
|
|
name = "influxdb-${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/influxdata/influxdb";
|
2015-11-16 12:59:30 +01:00
|
|
|
|
|
|
|
excludedPackages = "test";
|
2016-07-23 01:08:33 +02:00
|
|
|
|
|
|
|
inherit src;
|
2014-05-26 11:12:38 +02:00
|
|
|
|
2016-06-12 15:38:11 +02:00
|
|
|
# Generated with the `gdm2nix.rb` script and the `Godeps` file from the
|
|
|
|
# influxdb repo root.
|
2016-08-17 13:40:05 +02:00
|
|
|
goDeps = ./. + builtins.toPath "/deps-${version}.json";
|
2014-05-26 11:12:38 +02:00
|
|
|
|
2015-11-16 12:59:30 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "An open-source distributed time series database";
|
2014-05-26 11:12:38 +02:00
|
|
|
license = licenses.mit;
|
2015-11-16 12:59:30 +01:00
|
|
|
homepage = https://influxdb.com/;
|
2016-06-12 15:38:11 +02:00
|
|
|
maintainers = with maintainers; [ offline zimbatm ];
|
2015-11-18 11:33:50 +01:00
|
|
|
platforms = platforms.linux;
|
2014-05-26 11:12:38 +02:00
|
|
|
};
|
|
|
|
}
|