about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/gohai/default.nix
blob: a4b07f112ae3fe4b2587da5d2389cd29ad473e5b (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
27
28
29
30
31
{ lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "gohai";
  version = "2018-05-23";
  rev = "60e13eaed98afa238ad6dfc98224c04fbb7b19b1";

  goPackagePath = "github.com/DataDog/gohai";

  src = fetchgit {
    inherit rev;
    url    = "https://github.com/DataDog/gohai";
    sha256 = "15hdw195f6ayrmj1nbyfpfswdai1r1z3qjw927mbma7rwql24dkr";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description      = "System information collector";
    homepage         = "https://github.com/DataDog/gohai";
    license          = licenses.mit;
    maintainers      = [ maintainers.tazjin ];
    platforms        = platforms.unix;

    longDescription = ''
      Gohai is a tool which collects an inventory of system
      information. It is used by the Datadog agent to provide detailed
      system metrics.
    '';
  };
}