summary refs log tree commit diff
path: root/pkgs/tools/security/radamsa/default.nix
blob: 4a770f86e5cb2a41454a4af0a7f02d76e77e0806 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
}