python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / packet-sd / default.nix
blobf8caeb7f684d1506e97b39dc5d4b1103a59fe55a
1 { buildGoModule, fetchFromGitHub, lib }:
2 buildGoModule rec {
3   pname = "prometheus-packet-sd";
4   version = "0.0.3";
6   src = fetchFromGitHub {
7     owner = "packethost";
8     repo = "prometheus-packet-sd";
9     rev = "v${version}";
10     sha256 = "sha256-2k8AsmyhQNNZCzpVt6JdgvI8IFb5pRi4ic6Yn2NqHMM=";
11   };
13   vendorSha256 = null;
15   subPackages = [ "." ];
17   meta = with lib; {
18     description = "Prometheus service discovery for Equinix Metal";
19     homepage = "https://github.com/packethost/prometheus-packet-sd";
20     license = licenses.asl20;
21     platforms = platforms.unix;
22     maintainers = [ ];
23     mainProgram = "prometheus-packet-sd";
24   };