lol

*beat6: remove

ajs124 426fbcb5 76ad0b1b

+10 -65
-54
pkgs/misc/logging/beats/6.x.nix
··· 1 - { lib, fetchFromGitHub, fetchpatch, elk6Version, buildGoPackage, libpcap, nixosTests, systemd }: 2 - 3 - let beat = package : extraArgs : buildGoPackage (rec { 4 - name = "${package}-${version}"; 5 - version = elk6Version; 6 - 7 - src = fetchFromGitHub { 8 - owner = "elastic"; 9 - repo = "beats"; 10 - rev = "v${version}"; 11 - sha256 = "1vnw9clsc10cfpjf6vxvc6m507b2q17sgsl079iwqbp4v0286il7"; 12 - }; 13 - 14 - goPackagePath = "github.com/elastic/beats"; 15 - 16 - subPackages = [ package ]; 17 - 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 - ]; 25 - 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 - }; 54 - }
+6 -1
pkgs/top-level/aliases.nix
··· 474 474 ffadoFull = throw "'ffadoFull' has been renamed to/replaced by 'ffado'"; # Converted to throw 2022-02-22 475 475 ffmpeg-sixel = throw "ffmpeg-sixel has been removed, because it was an outdated/unmaintained fork of ffmpeg"; # Added 2022-03-23"; 476 476 ffmpeg_3 = throw "ffmpeg_3 was removed from nixpkgs, because it was an outdated and insecure release"; # added 2022-01-17 477 + filebeat6 = throw "filebeat6 has been removed because it reached end of life"; # Added 2022-10-04 477 478 finger_bsd = bsd-finger; 478 479 fingerd_bsd = bsd-fingerd; 479 480 firefox-esr-68 = throw "Firefox 68 ESR was removed because it reached end of life with its final release 68.12esr on 2020-08-25"; ··· 662 663 haxe_3_4 = throw "'haxe_3_4' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 663 664 hdr-plus = throw "hdr-plus has been removed because it is unmaintained, often breaks and no longer consumed as a dependency"; # Added 2022-11-08 664 665 heapster = throw "Heapster is now retired. See https://github.com/kubernetes-retired/heapster/blob/master/docs/deprecation.md"; # Added 2022-04-05 666 + heartbeat6 = throw "heartbeat6 has been removed because it reached end of life"; # Added 2022-10-04 665 667 heimdalFull = throw "'heimdalFull' has been renamed to/replaced by 'heimdal'"; # Converted to throw 2022-02-22 666 668 heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06 667 669 hepmc = hepmc2; # Added 2019-08-05 ··· 732 734 jellyfin_10_5 = throw "Jellyfin 10.5 is no longer supported and contains a security vulnerability. Please upgrade to a newer version"; # Added 2021-04-26 733 735 jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 734 736 joseki = throw "'joseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22 735 - journalbeat7 = throw "journalbeat has been removed upstream. Use filebeat with the journald input instead"; 737 + journalbeat = throw "journalbeat7 has been removed upstream. Use filebeat with the journald input instead"; # Added 2022-10-04 738 + journalbeat6 = throw "journalbeat6 has been removed because it reached end of life"; # Added 2022-10-04 739 + journalbeat7 = throw "journalbeat7 has been removed upstream. Use filebeat with the journald input instead"; # Added 2022-10-04 736 740 737 741 # Julia 738 742 julia_07 = throw "julia_07 has been deprecated in favor of the latest LTS version"; # Added 2020-09-15 ··· 997 1001 mesos = throw "mesos has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 998 1002 mess = mame; # Added 2019-10-30 999 1003 metal = throw "metal has been removed due to lack of maintainers"; 1004 + metricbeat6 = throw "metricbeat6 has been removed because it reached end of life"; # Added 2022-10-04 1000 1005 mididings = throw "mididings has been removed from nixpkgs as it doesn't support recent python3 versions and its upstream stopped maintaining it"; # Added 2022-01-12 1001 1006 midoriWrapper = throw "'midoriWrapper' has been renamed to/replaced by 'midori'"; # Converted to throw 2022-02-22 1002 1007 mime-types = mailcap; # Added 2022-01-21
+4 -10
pkgs/top-level/all-packages.nix
··· 3777 3777 3778 3778 bchunk = callPackage ../tools/cd-dvd/bchunk { }; 3779 3779 3780 - inherit (callPackages ../misc/logging/beats/6.x.nix { }) 3781 - filebeat6 3782 - heartbeat6 3783 - metricbeat6 3784 - journalbeat6; 3785 - 3786 3780 inherit (callPackages ../misc/logging/beats/7.x.nix { }) 3787 3781 filebeat7 3788 3782 heartbeat7 3789 3783 metricbeat7 3790 3784 packetbeat7; 3791 3785 3792 - filebeat = filebeat6; 3793 - heartbeat = heartbeat6; 3794 - metricbeat = metricbeat6; 3795 - journalbeat = journalbeat6; 3786 + filebeat = filebeat7; 3787 + heartbeat = heartbeat7; 3788 + metricbeat = metricbeat7; 3789 + packetbeat = packetbeat7; 3796 3790 3797 3791 bfr = callPackage ../tools/misc/bfr { }; 3798 3792