honggfuzz: 2.4 -> 2.5

This commit is contained in:
Daniel McCarney 2022-01-03 13:12:33 -05:00
parent 1300bedb61
commit c8d305d444
No known key found for this signature in database
GPG key ID: 08FB2BFC470E75B4

View file

@ -1,17 +1,16 @@
{ lib, stdenv, fetchFromGitHub, callPackage, makeWrapper { lib, stdenv, fetchFromGitHub, callPackage, makeWrapper, clang, llvm, libbfd
, clang, llvm, libbfd, libopcodes, libunwind, libblocksruntime , libopcodes, libunwind, libblocksruntime }:
}:
let let
honggfuzz = stdenv.mkDerivation rec { honggfuzz = stdenv.mkDerivation rec {
pname = "honggfuzz"; pname = "honggfuzz";
version = "2.4"; version = "2.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "google"; owner = "google";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-sU5lmlfmvVWo4K96sI+xQsPfTMd1wsLbihcKI4aTj6g="; sha256 = "sha256-TkyUKmiiSAfCnfQhSOUxuce6+dRyMmHy7vFK59jPIxM=";
}; };
postPatch = '' postPatch = ''
@ -28,7 +27,8 @@ let
makeFlags = [ "PREFIX=$(out)" ]; makeFlags = [ "PREFIX=$(out)" ];
meta = { meta = {
description = "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer"; description =
"A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer";
longDescription = '' longDescription = ''
Honggfuzz is a security oriented, feedback-driven, evolutionary, Honggfuzz is a security oriented, feedback-driven, evolutionary,
easy-to-use fuzzer with interesting analysis options. It is easy-to-use fuzzer with interesting analysis options. It is
@ -42,9 +42,9 @@ let
fuzzing), and it will work its way up, expanding it by utilizing fuzzing), and it will work its way up, expanding it by utilizing
feedback-based coverage metrics. feedback-based coverage metrics.
''; '';
homepage = "https://honggfuzz.dev/"; homepage = "https://honggfuzz.dev/";
license = lib.licenses.asl20; license = lib.licenses.asl20;
platforms = ["x86_64-linux"]; platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ cpu ]; maintainers = with lib.maintainers; [ cpu ];
}; };
}; };