chkrootkit: drop (#442222)

authored by philiptaron.tngl.sh and committed by

GitHub 43692fb1 25c38e39

+1 -42
-42
pkgs/by-name/ch/chkrootkit/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - makeWrapper, 6 - binutils-unwrapped, 7 - }: 8 - 9 - stdenv.mkDerivation rec { 10 - pname = "chkrootkit"; 11 - version = "0.58b"; 12 - 13 - src = fetchurl { 14 - url = "ftp://ftp.chkrootkit.org/pub/seg/pac/${pname}-${version}.tar.gz"; 15 - sha256 = "sha256-de0qzoHw+j6cP7ZNqw6IV+1ZJH6nVfWJhBb+ssZoB7k="; 16 - }; 17 - 18 - # TODO: a lazy work-around for linux build failure ... 19 - makeFlags = [ "STATIC=" ]; 20 - 21 - nativeBuildInputs = [ makeWrapper ]; 22 - 23 - postPatch = '' 24 - substituteInPlace chkrootkit \ 25 - --replace " ./" " $out/bin/" 26 - ''; 27 - 28 - installPhase = '' 29 - mkdir -p $out/sbin 30 - cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin 31 - 32 - wrapProgram $out/sbin/chkrootkit \ 33 - --prefix PATH : "${lib.makeBinPath [ binutils-unwrapped ]}" 34 - ''; 35 - 36 - meta = with lib; { 37 - description = "Locally checks for signs of a rootkit"; 38 - homepage = "https://www.chkrootkit.org/"; 39 - license = licenses.bsd2; 40 - platforms = with platforms; linux; 41 - }; 42 - }
+1
pkgs/top-level/aliases.nix
··· 614 614 ChowPhaser = chow-phaser; # Added 2024-06-12 615 615 ChowKick = chow-kick; # Added 2024-06-12 616 616 CHOWTapeModel = chow-tape-model; # Added 2024-06-12 617 + chkrootkit = throw "chkrootkit has been removed as it is unmaintained and archived upstream and didn't even work on NixOS"; # Added 2025-09-12 617 618 chromatic = throw "chromatic has been removed due to being unmaintained and failing to build"; # Added 2025-04-18 618 619 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 619 620 cinnamon-common = cinnamon; # Added 2025-08-06