python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / logging / beats / 6.x.nix
blob1c3e4adccf821dde05d3a637000482d1d1045258
1 { lib, fetchFromGitHub, fetchpatch, elk6Version, buildGoPackage, libpcap, nixosTests, systemd }:
3 let beat = package : extraArgs : buildGoPackage (rec {
4       name = "${package}-${version}";
5       version = elk6Version;
7       src = fetchFromGitHub {
8         owner = "elastic";
9         repo = "beats";
10         rev = "v${version}";
11         sha256 = "1vnw9clsc10cfpjf6vxvc6m507b2q17sgsl079iwqbp4v0286il7";
12       };
14       goPackagePath = "github.com/elastic/beats";
16       subPackages = [ package ];
18       patches = [
19         (fetchpatch {
20           # Build fix for aarch64, possibly other systems, merged in beats 7.x https://github.com/elastic/beats/pull/9493
21           url = "https://github.com/elastic/beats/commit/5d796571de1aa2a299393d2045dacc2efac41a04.diff";
22           sha256 = "sha256:0b79fljbi5xd3h8iiv1m38ad0zhmj09f187asc0m9rxlqrz2l9r2";
23         })
24       ];
26       meta = with lib; {
27         homepage = "https://www.elastic.co/products/beats";
28         license = licenses.asl20;
29         maintainers = with maintainers; [ fadenb basvandijk dfithian ];
30         platforms = platforms.linux;
31       };
32     } // extraArgs);
33 in rec {
34   filebeat6   = beat "filebeat"   {meta.description = "Lightweight shipper for logfiles";};
35   heartbeat6  = beat "heartbeat"  {meta.description = "Lightweight shipper for uptime monitoring";};
36   metricbeat6 = beat "metricbeat" {
37     meta.description = "Lightweight shipper for metrics";
38     passthru.tests =
39       assert metricbeat6.drvPath == nixosTests.elk.ELK-6.elkPackages.metricbeat.drvPath;
40       {
41         elk = nixosTests.elk.ELK-6;
42       };
43   };
44   journalbeat6  = beat "journalbeat" {
45     meta.description = ''
46       Journalbeat is an open source data collector to read and forward
47       journal entries from Linuxes with systemd.
48     '';
49     buildInputs = [ systemd.dev ];
50     postFixup = let libPath = lib.makeLibraryPath [ (lib.getLib systemd) ]; in ''
51       patchelf --set-rpath ${libPath} "$out/bin/journalbeat"
52     '';
53   };