GNU bug report logs -
#60390
[PATCH 0/2] Update dpf-plugins and use new package style.
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/music (dpf-plugins)[arguments]: Use G-expressions. Use #$output
instead of assoc-ref.
---
gnu/packages/music.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 09c4bf6afd..50dbb744e6 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -6118,13 +6118,13 @@ (define-public dpf-plugins
(base32 "017d4cw3kkkxdpry4ya1c6kv8bsfiraij9dgqqcj07hb9dy0xnxi"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; no "check" target
- #:make-flags
- (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
- (string-append "CC=" ,(cc-for-target)))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))))
+ (list #:tests? #f ; no "check" target
+ #:make-flags
+ #~(list (string-append "PREFIX=" #$output)
+ (string-append "CC=" #$(cc-for-target)))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure))))
(inputs
(list cairo
liblo ; for dssi plugins
--
2.39.0
This bug report was last modified 2 years and 170 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.