evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gohai / package.nix
blob5fa84e873ba3fca0ce9a9c54cfaf5bd4132955f1
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gohai";
5   version = "unstable-2022-04-12";
7   src = fetchFromGitHub {
8     owner = "DataDog";
9     repo = "gohai";
10     rev = "c614f513e87f04d3d19b2d4ae853cc5703f3a9bc";
11     sha256 = "sha256-vdzGGTg9SHYS0OQUn3VvrQGpKxzqxBRXDKOm0c7FvYY=";
12   };
14   vendorHash = "sha256-aN1fwGbBm45e6qdRu+4wnv2ZI7SOsIPONB4vF9o2vlI=";
16   ldflags = [ "-s" "-w" ];
18   doCheck = false;
20   meta = with lib; {
21     description = "System information collector";
22     homepage = "https://github.com/DataDog/gohai";
23     license = licenses.mit;
24     maintainers = with maintainers; [ tazjin ];
25     longDescription = ''
26       Gohai is a tool which collects an inventory of system
27       information. It is used by the Datadog agent to provide detailed
28       system metrics.
29     '';
30     mainProgram = "gohai";
31   };