Merge pull request #11335 from markWot/radamsa

radamsa: init at 0.4
This commit is contained in:
Aristid Breitkreuz 2015-11-29 00:24:43 +01:00
commit 903053e332
3 changed files with 30 additions and 0 deletions

View File

@ -182,6 +182,7 @@
malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>";
manveru = "Michael Fellinger <m.fellinger@gmail.com>";
marcweber = "Marc Weber <marco-oweber@gmx.de>";
markWot = "Markus Wotringer <markus@wotringer.de";
maurer = "Matthew Maurer <matthew.r.maurer+nix@gmail.com>";
matejc = "Matej Cotman <cotman.matej@gmail.com>";
mathnerd314 = "Mathnerd314 <mathnerd314.gph+hs@gmail.com>";

View File

@ -0,0 +1,27 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "radamsa-${version}";
version = "0.4";
src = fetchurl {
url = "http://haltp.org/download/${name}.tar.gz";
sha256 = "1xs9dsrq6qrf104yi9x21scpr73crfikbi8q9njimiw5c1y6alrv";
};
patchPhase = ''
substituteInPlace ./tests/bd.sh \
--replace "/bin/echo" echo
substituteInPlace ./Makefile \
--replace "PREFIX=/usr" "PREFIX=$out" \
--replace "BINDIR=/bin" "BINDIR="
'';
meta = {
description = "A general purpose fuzzer";
longDescription = "Radamsa is a general purpose data fuzzer. It reads data from given sample files, or standard input if none are given, and outputs modified data. It is usually used to generate malformed data for testing programs.";
homepage = http://github.com/aoh/radamsa;
maintainers = [ stdenv.lib.maintainers.markWot ];
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -2822,6 +2822,8 @@ let
quilt = callPackage ../development/tools/quilt { };
radamsa = callPackage ../tools/security/radamsa { };
radvd = callPackage ../tools/networking/radvd { };
ranger = callPackage ../applications/misc/ranger { };