libdislocator: init at 2.52b

This commit is contained in:
Robert Scott 2019-02-10 00:11:32 +00:00
parent aee2dc8899
commit d3414f4132
2 changed files with 36 additions and 0 deletions

@ -0,0 +1,34 @@
{ stdenv, afl}:
stdenv.mkDerivation rec {
version = (builtins.parseDrvName afl.name).version;
name = "libdislocator-${version}";
src = afl.src;
sourceRoot = "${afl.name}/libdislocator";
makeFlags = [ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/lib/afl
'';
postInstall = ''
mkdir $out/bin
cat > $out/bin/get-libdislocator-so <<END
#!${stdenv.shell}
echo $out/lib/afl/libdislocator.so
END
chmod +x $out/bin/get-libdislocator-so
'';
meta = with stdenv.lib; {
homepage = "http://lcamtuf.coredump.cx/afl/";
description = ''
Drop-in replacement for the libc allocator which improves
the odds of bumping into heap-related security bugs in
several ways.
'';
license = stdenv.lib.licenses.asl20;
maintainers = with maintainers; [ ris ];
};
}

@ -441,6 +441,8 @@ in
stdenv = clangStdenv;
};
libdislocator = callPackage ../tools/security/afl/libdislocator.nix { };
afpfs-ng = callPackage ../tools/filesystems/afpfs-ng { };
agrep = callPackage ../tools/text/agrep { };