summary refs log tree commit diff
path: root/pkgs/servers/nosql/influxdb/default.nix
blob: 1372b6a3fc36232bdced7cdff3ea06689ab40e96 (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
24
25
26
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "influxdb-${rev}";
  rev = "v0.9.4";
  goPackagePath = "github.com/influxdb/influxdb";

  src = fetchFromGitHub {
    inherit rev;
    owner = "influxdb";
    repo = "influxdb";
    sha256 = "0yarymppnlpf2xab57i8jx595v47s5mdwnf13719mc1fv3q84yqn";
  };

  excludedPackages = "test";

  goDeps = ./deps.json;

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