guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: diffoscope: Add support for zstd compression.


From: guix-commits
Subject: 01/01: gnu: diffoscope: Add support for zstd compression.
Date: Sun, 15 Dec 2019 16:01:34 -0500 (EST)

vagrantc pushed a commit to branch master
in repository guix.

commit bc685e1ca3516a218c083da206d3d1c354733073
Author: Vagrant Cascadian <address@hidden>
Date:   Sun Dec 15 20:42:15 2019 +0000

    gnu: diffoscope: Add support for zstd compression.
    
    * gnu/packages/diffoscope (diffoscope)[native-inputs]: Add zstd.
      [arguments]: Add add-known-tools phase with support for zstd.
---
 gnu/packages/diffoscope.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index 821dc8a..93630f3 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -90,6 +90,12 @@
                       (lambda _
                         (substitute* "setup.py"
                           (("'python-magic',") ""))))
+                    ;; Patch in support for known tools
+                    (add-after 'unpack 'add-known-tools
+                      (lambda _
+                        (substitute* "diffoscope/external_tools.py"
+                          (("'debian': 'zstd'")
+                           "'debian': 'zstd', 'guix': 'zstd'"))))
                     ;; This test is broken because our `file` package has a
                     ;; bug in berkeley-db file type detection.
                     (add-after 'unpack 'remove-berkeley-test
@@ -209,7 +215,8 @@
                        ("wabt" ,wabt)
                        ("xxd" ,xxd)
                        ("xz" ,xz)
-                       ("zip" ,zip)))
+                       ("zip" ,zip)
+                       ("zstd" ,zstd)))
       (home-page "https://diffoscope.org/";)
       (synopsis "Compare files, archives, and directories in depth")
       (description



reply via email to

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