summary refs log tree commit diff
path: root/pkgs/tools/security/tmin/default.nix
blob: 2c16e936a695b0a645674e96307bbe9485ed4925 (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
{ stdenv, fetchurl, bash }:

stdenv.mkDerivation rec {
  name    = "tmin-${version}";
  version = "0.05";

  src = fetchurl {
    url    = "https://tmin.googlecode.com/files/${name}.tar.gz";
    sha256 = "0166kcfs4b0da4hs2aqyn41f5l09i8rwxpi20k7x17qsxbmjbpd5";
  };

  buildPhase   = ''
    gcc -O3 -funroll-loops -fno-strict-aliasing -Wno-pointer-sign tmin.c -o tmin
  '';
  installPhase = "mkdir -p $out/bin && mv tmin $out/bin";

  meta = {
    description = "Fuzzing tool test-case optimizer";
    homepage    = "https://code.google.com/p/tmin";
    license     = stdenv.lib.licenses.asl20;
    platforms   = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}