summary refs log tree commit diff
path: root/pkgs/tools/security/honggfuzz
diff options
context:
space:
mode:
authorDaniel McCarney <daniel@binaryparadox.net>2022-01-03 13:12:33 -0500
committerDaniel McCarney <daniel@binaryparadox.net>2022-01-03 13:12:33 -0500
commitc8d305d444e0b302f0331f35dea20b4f1fc34b64 (patch)
tree7e19d7320864b766bc9a98ea91d06ddc1c7788f7 /pkgs/tools/security/honggfuzz
parent1300bedb617df1741bfe50d5bbeece3a9241c036 (diff)
downloadnixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar.gz
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar.bz2
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar.lz
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar.xz
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.tar.zst
nixpkgs-c8d305d444e0b302f0331f35dea20b4f1fc34b64.zip
honggfuzz: 2.4 -> 2.5
Diffstat (limited to 'pkgs/tools/security/honggfuzz')
-rw-r--r--pkgs/tools/security/honggfuzz/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/tools/security/honggfuzz/default.nix b/pkgs/tools/security/honggfuzz/default.nix
index 62b335ef5c7..7333c20fd7b 100644
--- a/pkgs/tools/security/honggfuzz/default.nix
+++ b/pkgs/tools/security/honggfuzz/default.nix
@@ -1,17 +1,16 @@
-{ lib, stdenv, fetchFromGitHub, callPackage, makeWrapper
-, clang, llvm, libbfd, libopcodes, libunwind, libblocksruntime
-}:
+{ lib, stdenv, fetchFromGitHub, callPackage, makeWrapper, clang, llvm, libbfd
+, libopcodes, libunwind, libblocksruntime }:
 
 let
   honggfuzz = stdenv.mkDerivation rec {
     pname = "honggfuzz";
-    version = "2.4";
+    version = "2.5";
 
     src = fetchFromGitHub {
       owner = "google";
       repo = pname;
       rev = version;
-      sha256 = "sha256-sU5lmlfmvVWo4K96sI+xQsPfTMd1wsLbihcKI4aTj6g=";
+      sha256 = "sha256-TkyUKmiiSAfCnfQhSOUxuce6+dRyMmHy7vFK59jPIxM=";
     };
 
     postPatch = ''
@@ -28,7 +27,8 @@ let
     makeFlags = [ "PREFIX=$(out)" ];
 
     meta = {
-      description = "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer";
+      description =
+        "A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer";
       longDescription = ''
         Honggfuzz is a security oriented, feedback-driven, evolutionary,
         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
         feedback-based coverage metrics.
       '';
-      homepage    = "https://honggfuzz.dev/";
-      license     = lib.licenses.asl20;
-      platforms   = ["x86_64-linux"];
+      homepage = "https://honggfuzz.dev/";
+      license = lib.licenses.asl20;
+      platforms = [ "x86_64-linux" ];
       maintainers = with lib.maintainers; [ cpu ];
     };
   };