Merge pull request #153365 from cpu/cpu-honggfuzz-2.5

honggfuzz: 2.4 -> 2.5

authored by Renaud and committed by GitHub be52ab78 43cba143

+9 -9
+9 -9
pkgs/tools/security/honggfuzz/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, callPackage, makeWrapper 2 - , clang, llvm, libbfd, libopcodes, libunwind, libblocksruntime 3 - }: 4 5 let 6 honggfuzz = stdenv.mkDerivation rec { 7 pname = "honggfuzz"; 8 - version = "2.4"; 9 10 src = fetchFromGitHub { 11 owner = "google"; 12 repo = pname; 13 rev = version; 14 - sha256 = "sha256-sU5lmlfmvVWo4K96sI+xQsPfTMd1wsLbihcKI4aTj6g="; 15 }; 16 17 postPatch = '' ··· 28 makeFlags = [ "PREFIX=$(out)" ]; 29 30 meta = { 31 - description = "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer"; 32 longDescription = '' 33 Honggfuzz is a security oriented, feedback-driven, evolutionary, 34 easy-to-use fuzzer with interesting analysis options. It is ··· 42 fuzzing), and it will work its way up, expanding it by utilizing 43 feedback-based coverage metrics. 44 ''; 45 - homepage = "https://honggfuzz.dev/"; 46 - license = lib.licenses.asl20; 47 - platforms = ["x86_64-linux"]; 48 maintainers = with lib.maintainers; [ cpu ]; 49 }; 50 };
··· 1 + { lib, stdenv, fetchFromGitHub, callPackage, makeWrapper, clang, llvm, libbfd 2 + , libopcodes, libunwind, libblocksruntime }: 3 4 let 5 honggfuzz = stdenv.mkDerivation rec { 6 pname = "honggfuzz"; 7 + version = "2.5"; 8 9 src = fetchFromGitHub { 10 owner = "google"; 11 repo = pname; 12 rev = version; 13 + sha256 = "sha256-TkyUKmiiSAfCnfQhSOUxuce6+dRyMmHy7vFK59jPIxM="; 14 }; 15 16 postPatch = '' ··· 27 makeFlags = [ "PREFIX=$(out)" ]; 28 29 meta = { 30 + description = 31 + "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer"; 32 longDescription = '' 33 Honggfuzz is a security oriented, feedback-driven, evolutionary, 34 easy-to-use fuzzer with interesting analysis options. It is ··· 42 fuzzing), and it will work its way up, expanding it by utilizing 43 feedback-based coverage metrics. 44 ''; 45 + homepage = "https://honggfuzz.dev/"; 46 + license = lib.licenses.asl20; 47 + platforms = [ "x86_64-linux" ]; 48 maintainers = with lib.maintainers; [ cpu ]; 49 }; 50 };