guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: bitshuffle-for-snappy: Inherit package arguments.


From: guix-commits
Subject: 01/01: gnu: bitshuffle-for-snappy: Inherit package arguments.
Date: Sun, 13 Jan 2019 04:51:16 -0500 (EST)

efraim pushed a commit to branch staging
in repository guix.

commit ad79ae7e2d7505292b11e87302b08f4db0f934e9
Author: Efraim Flashner <address@hidden>
Date:   Sun Jan 13 11:49:32 2019 +0200

    gnu: bitshuffle-for-snappy: Inherit package arguments.
    
    * gnu/packages/compression.scm (bitshuffle-for-snappy)[arguments]:
    Inherit package arguments from bitshuffle. Always skip tests.
---
 gnu/packages/compression.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 1c1276d..ea3d72c 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1269,14 +1269,15 @@ for most inputs, but the resulting compressed files are 
anywhere from 20% to
     (name "bitshuffle-for-snappy")
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'configure
-           (lambda* (#:key outputs #:allow-other-keys)
-             (with-output-to-file "Makefile"
-               (lambda _
-                 (format #t "\
+     (substitute-keyword-arguments (package-arguments bitshuffle)
+       ((#:tests? _ #f) #f)
+       ((#:phases phases)
+        `(modify-phases %standard-phases
+           (replace 'configure
+             (lambda* (#:key outputs #:allow-other-keys)
+               (with-output-to-file "Makefile"
+                 (lambda _
+                   (format #t "\
 libbitshuffle.so: src/bitshuffle.o src/bitshuffle_core.o src/iochain.o 
lz4/lz4.o
 \tgcc -O3 -ffast-math -std=c99 -o $@ -shared -fPIC $^
 
@@ -1296,7 +1297,7 @@ install: libbitshuffle.so
 \tinstall -m644 src/iochain.h $(INCLUDEDIR)
 \tinstall -m644 lz4/lz4.h $(INCLUDEDIR)
 " (assoc-ref outputs "out"))))
-             #t)))))
+               #t))))))
     (inputs '())
     (native-inputs '())))
 



reply via email to

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