nixpkgs/pkgs/tools/security/chkrootkit/default.nix

31 lines
782 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-09-07 21:07:41 +03:00
2016-12-05 00:07:11 +03:00
stdenv.mkDerivation rec {
2021-01-19 12:23:00 +03:00
name = "chkrootkit-0.54";
2015-09-07 21:07:41 +03:00
src = fetchurl {
2016-12-05 00:07:11 +03:00
url = "ftp://ftp.pangeia.com.br/pub/seg/pac/${name}.tar.gz";
2021-01-19 12:23:00 +03:00
sha256 = "sha256-FUySaSH1PbYHKKfLyXyohli2lMFLfSiO/jg+CEmRVgc=";
};
2016-12-05 00:07:11 +03:00
# TODO: a lazy work-around for linux build failure ...
makeFlags = [ "STATIC=" ];
2017-12-29 02:18:16 +03:00
postPatch = ''
substituteInPlace chkrootkit \
--replace " ./" " $out/bin/"
'';
2016-12-05 00:07:11 +03:00
installPhase = ''
mkdir -p $out/sbin
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
2016-12-05 00:07:11 +03:00
'';
meta = with lib; {
2016-12-05 00:07:11 +03:00
description = "Locally checks for signs of a rootkit";
homepage = "http://www.chkrootkit.org/";
2016-12-05 00:07:11 +03:00
license = licenses.bsd2;
platforms = with platforms; linux;
};
}