python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / chkrootkit / default.nix
blobb365fa62f95379e124b591ed51cd94ecd792f8a1
1 { lib, stdenv, fetchurl, makeWrapper, binutils-unwrapped }:
3 stdenv.mkDerivation rec {
4   pname = "chkrootkit";
5   version = "0.55";
7   src = fetchurl {
8     url = "ftp://ftp.pangeia.com.br/pub/seg/pac/${pname}-${version}.tar.gz";
9     sha256 = "sha256-qBwChuxEkxP5U3ASAqAOgbIE/Cz0PieFhaEcEqXgJYs=";
10   };
12   # TODO: a lazy work-around for linux build failure ...
13   makeFlags = [ "STATIC=" ];
15   nativeBuildInputs = [ makeWrapper ];
17   postPatch = ''
18     substituteInPlace chkrootkit \
19       --replace " ./" " $out/bin/"
20   '';
22   installPhase = ''
23     mkdir -p $out/sbin
24     cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
26     wrapProgram $out/sbin/chkrootkit \
27       --prefix PATH : "${lib.makeBinPath [ binutils-unwrapped ]}"
28   '';
30   meta = with lib; {
31     description = "Locally checks for signs of a rootkit";
32     homepage = "http://www.chkrootkit.org/";
33     license = licenses.bsd2;
34     platforms = with platforms; linux;
35   };