nixpkgs/pkgs/servers/nosql/influxdb/default.nix

32 lines
774 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub, }:
2015-11-16 11:59:30 +00:00
2016-06-06 00:28:52 +00:00
buildGoPackage rec {
2016-06-12 13:38:11 +00:00
name = "influxdb-${version}";
2018-09-23 10:00:52 +00:00
version = "1.6.3";
src = fetchFromGitHub {
owner = "influxdata";
repo = "influxdb";
rev = "v${version}";
2018-09-23 10:00:52 +00:00
sha256 = "0xf16liapllk8qnw0vsy1ja4if1xlazwwaa4p0r5j7bny5lxm7zy";
};
2016-06-12 13:38:11 +00:00
buildFlagsArray = [ ''-ldflags=
-X main.version=${version}
'' ];
2016-06-12 13:38:11 +00:00
goPackagePath = "github.com/influxdata/influxdb";
2015-11-16 11:59:30 +00:00
excludedPackages = "test";
2018-09-23 10:00:52 +00:00
# Generated with dep2nix (for 1.6.3) / nix2go (for 1.4.1).
goDeps = ./. + "/deps-${version}.nix";
2015-11-16 11:59:30 +00:00
meta = with lib; {
description = "An open-source distributed time series database";
license = licenses.mit;
2015-11-16 11:59:30 +00:00
homepage = https://influxdb.com/;
2016-06-12 13:38:11 +00:00
maintainers = with maintainers; [ offline zimbatm ];
};
}