guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add zzuf


From: John Darrington
Subject: 01/01: gnu: Add zzuf
Date: Tue, 29 Nov 2016 20:32:31 +0000 (UTC)

jmd pushed a commit to branch master
in repository guix.

commit 660516e87556dfc39229cb6d319c9d1793efebb4
Author: John Darrington <address@hidden>
Date:   Tue Nov 29 21:29:38 2016 +0100

    gnu: Add zzuf
    
    * gnu/packages/debug.scm (zzuf): New variable.
---
 gnu/packages/debug.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 54ed5cd..b7d6bbc 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -314,3 +314,25 @@ no race conditions.")
       ;; and patched GNU Make is under its own license.
       (license (list (non-copyleft "COPYING.md")
                      (package-license gnu-make))))))
+
+(define-public zzuf
+  (package
+    (name "zzuf")
+    (version "0.15")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/samhocevar/zzuf/releases/download/v";
+             version "/" name "-" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1mpzjaksc2qg2hzqflf39pl06p53qam2dn3hkhkcv6p00d2n4kx3"))))
+    (build-system gnu-build-system)
+    (home-page "https://github.com/samhocevar/zzuf";)
+    (synopsis "Transparent application input fuzzer")
+    (description "Zzuf is a transparent application input fuzzer.  It works by
+intercepting file operations and changing random bits in the program's
+input.  Zzuf's behaviour is deterministic, making it easy to reproduce bugs.")
+    (license (non-copyleft "http://www.wtfpl.net/txt/copying/";))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]