8 stdenv.mkDerivation rec {
10 version = "unstable-2019-03-08";
12 src = fetchFromGitHub {
16 sha256 = "0x9irwrw5x2ia6ch6gshadrlqrgdi1ivkadmr7j4m75k04a7nvz1";
19 buildInputs = [ perl ];
23 cp -r ${src}/bedmod $out/bin/bedmod
24 cp ${src}/doona.pl $out/bin/doona
25 chmod +x $out/bin/doona
29 homepage = "https://github.com/wireghoul/doona";
30 description = "Fork of the Bruteforce Exploit Detector Tool (BED)";
31 mainProgram = "doona";
33 A fork of the Bruteforce Exploit Detector Tool (BED).
34 BED is a program which is designed to check daemons for potential buffer overflows, format string bugs etc.
36 license = licenses.gpl2Only;
37 maintainers = with maintainers; [ pamplemousse ];