mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
chkrootkit: drop
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user