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