Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / nats-exporter.nix
blobfc8d360fc97a8aced2ee7fed28f37d6adfccfc63
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "prometheus-nats-exporter";
5   version = "0.15.0";
7   src = fetchFromGitHub {
8     owner = "nats-io";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-siucc55qi1SS2R07xgxh25CWYjxncUqvzxo0XoIPyOo=";
12   };
14   vendorHash = "sha256-vRUPLKxwVTt3t8UpsSH4yMCIShpYhYI6j7AEmlyOADs=";
16   preCheck = ''
17     # Fix `insecure algorithm SHA1-RSA` problem
18     export GODEBUG=x509sha1=1;
19   '';
21   meta = with lib; {
22     description = "Exporter for NATS metrics";
23     homepage = "https://github.com/nats-io/prometheus-nats-exporter";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ bbigras ];
26   };