diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-07-17 02:00:16 +0200 |
commit | dc2f6aaa5664ff4eadccb87c90472f58ed5a2247 (patch) | |
tree | ce81a8dd116afaa4c2a7e8327220a0ad635ec255 | |
parent | 0f4353d30a3c84541afd95fc6030eed2766604aa (diff) |
gnu: libdeflate: Use G-expressions.
* gnu/packages/compression.scm (libdeflate)[arguments]:
Rewrite as G-expressions.
-rw-r--r-- | gnu/packages/compression.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 8d9807cd1c..5b31b0ad52 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -2660,16 +2660,16 @@ to their original, binary CD format.") "16n9232zjavcp5wp17cx0gh2v7gipxpncsha05j3ybajfs7g88jv")))) (build-system gnu-build-system) (arguments - `(#:make-flags - (list (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'skip-static-library-installation - (lambda _ - (substitute* "Makefile" - (("install .*\\$\\(STATIC_LIB\\).*") "")))) - (delete 'configure)))) + (list #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-static-library-installation + (lambda _ + (substitute* "Makefile" + (("install .*\\$\\(STATIC_LIB\\).*") "")))) + (delete 'configure)))) ; no configure script (inputs (list zlib)) (home-page "https://github.com/ebiggers/libdeflate") |