chkrootkit: drop

This commit is contained in:
Sandro Jäckel
2025-09-12 00:45:13 +02:00
parent 7d72ca8ceb
commit 0b3c762f70
2 changed files with 1 additions and 42 deletions

View File

@@ -1,42 +0,0 @@
{
lib,
stdenv,
fetchurl,
makeWrapper,
binutils-unwrapped,
}:
stdenv.mkDerivation rec {
pname = "chkrootkit";
version = "0.58b";
src = fetchurl {
url = "ftp://ftp.chkrootkit.org/pub/seg/pac/${pname}-${version}.tar.gz";
sha256 = "sha256-de0qzoHw+j6cP7ZNqw6IV+1ZJH6nVfWJhBb+ssZoB7k=";
};
# TODO: a lazy work-around for linux build failure ...
makeFlags = [ "STATIC=" ];
nativeBuildInputs = [ makeWrapper ];
postPatch = ''
substituteInPlace chkrootkit \
--replace " ./" " $out/bin/"
'';
installPhase = ''
mkdir -p $out/sbin
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
wrapProgram $out/sbin/chkrootkit \
--prefix PATH : "${lib.makeBinPath [ binutils-unwrapped ]}"
'';
meta = with lib; {
description = "Locally checks for signs of a rootkit";
homepage = "https://www.chkrootkit.org/";
license = licenses.bsd2;
platforms = with platforms; linux;
};
}

View File

@@ -614,6 +614,7 @@ mapAliases {
ChowPhaser = chow-phaser; # Added 2024-06-12
ChowKick = chow-kick; # Added 2024-06-12
CHOWTapeModel = chow-tape-model; # Added 2024-06-12
chkrootkit = throw "chkrootkit has been removed as it is unmaintained and archived upstream and didn't even work on NixOS"; # Added 2025-09-12
chromatic = throw "chromatic has been removed due to being unmaintained and failing to build"; # Added 2025-04-18
chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27
cinnamon-common = cinnamon; # Added 2025-08-06