lol
at 15.09-beta 16 lines 396 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "chkrootkit-0.48"; 5 6 src = fetchurl { 7 url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; 8 sha256 = "1yzid6bw092nf8k83y1119kc4ns7r0l3zsfah5xal8kh19ad7cxl"; 9 }; 10 11 installPhase = " 12 mkdir -p $out/sbin 13 cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin 14 "; 15 16}