mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
nixpkgs: afl 1.80b -> 1.83b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
23393964bb
commit
1ee742b0ef
33
pkgs/development/tools/analysis/infer/default.nix
Normal file
33
pkgs/development/tools/analysis/infer/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchurl, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "infer-${version}";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/facebook/infer/releases/download/v${version}/infer-linux64-v${version}.tar.xz";
|
||||
sha256 = "1kppiayzqwmm13aq8x1jxd3j4jywh3h37jxrgyipz8li1ddpdq3m";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
buildPhase = "true";
|
||||
installPhase = ''
|
||||
mkdir -p $out/libexec $out/bin;
|
||||
cp -R facebook-clang-plugin $out/libexec
|
||||
cp -R infer $out/libexec
|
||||
for x in `ls $out/libexec/infer/infer/bin`; do
|
||||
ln -s $out/libexec/infer/infer/bin/$x $out/bin/$x;
|
||||
done
|
||||
'';
|
||||
fixupPhase = ''
|
||||
patchShebangs $out
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Scalable static analyzer for Java, C and Objective-C";
|
||||
homepage = http://fbinfer.com;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -9,11 +9,11 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "afl-${version}";
|
||||
version = "1.80b";
|
||||
version = "1.83b";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://lcamtuf.coredump.cx/afl/releases/${name}.tgz";
|
||||
sha256 = "008l2qirwlf40yhlrybcpglsil9nw8498qcjmvrnvvq31piwyhp0";
|
||||
sha256 = "1zkf9vdhmm1h0flxl1ybmw41amgh9cyh4hyb18jp972lgd9q642v";
|
||||
};
|
||||
|
||||
# Note: libcgroup isn't needed for building, just for the afl-cgroup
|
||||
|
@ -5302,6 +5302,8 @@ let
|
||||
|
||||
csslint = callPackage ../development/web/csslint { };
|
||||
|
||||
infer = callPackage ../development/tools/analysis/infer { };
|
||||
|
||||
libcxx = llvmPackages.libcxx;
|
||||
libcxxabi = llvmPackages.libcxxabi;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user