aflplusplus: init at 2.59c

This commit is contained in:
Robert Scott
2020-04-18 19:52:11 +01:00
parent cd3bc38f40
commit fbc11b4f02
6 changed files with 300 additions and 0 deletions
@@ -0,0 +1,31 @@
{ stdenv, aflplusplus}:
stdenv.mkDerivation {
version = stdenv.lib.getVersion aflplusplus;
pname = "libtokencap";
src = aflplusplus.src;
postUnpack = "chmod -R +w ${aflplusplus.src.name}";
sourceRoot = "${aflplusplus.src.name}/libtokencap";
makeFlags = [ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/lib/afl
'';
postInstall = ''
mkdir $out/bin
cat > $out/bin/get-libtokencap-so <<END
#!${stdenv.shell}
echo $out/lib/afl/libtokencap.so
END
chmod +x $out/bin/get-libtokencap-so
'';
meta = with stdenv.lib; {
homepage = "https://github.com/vanhauser-thc/AFLplusplus";
description = "strcmp & memcmp token capture library";
license = stdenv.lib.licenses.asl20;
maintainers = with maintainers; [ ris ];
};
}