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

24 lines
621 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub, src, version }:
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}";
goPackagePath = "github.com/influxdata/influxdb";
2015-11-16 11:59:30 +00:00
excludedPackages = "test";
inherit src;
2016-06-12 13:38:11 +00:00
# Generated with the `gdm2nix.rb` script and the `Godeps` file from the
# influxdb repo root.
goDeps = ./. + builtins.toPath "/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 ];
platforms = platforms.linux;
};
}