summary refs log tree commit diff
path: root/pkgs/servers/nosql/influxdb/default.nix
blob: 1614049bf22fc7a2588d282eb720f28bcaa04406 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildGoPackage, fetchFromGitHub, src, version }:

buildGoPackage rec {
  name = "influxdb-${version}";

  goPackagePath = "github.com/influxdata/influxdb";

  excludedPackages = "test";
  
  inherit src;

  # Generated with the `gdm2nix.rb` script and the `Godeps` file from the
  # influxdb repo root.
  goDeps = ./. + builtins.toPath "/deps-${version}.nix";

  meta = with lib; {
    description = "An open-source distributed time series database";
    license = licenses.mit;
    homepage = https://influxdb.com/;
    maintainers = with maintainers; [ offline zimbatm ];
    platforms = platforms.linux;
  };
}