me
/
guix
Archived
1
0
Fork 0

gnu: foo-yc20: Use gexp.

* gnu/packages/music.scm (foo-yc20)[arguments]: Use gexp.
master
Ricardo Wurmus 2023-02-07 11:29:28 +01:00
parent 3339f6f550
commit cd53d64876
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 7 deletions

View File

@ -5959,17 +5959,17 @@ and debugging of event signal flows inside plugin graphs.")
"1drzfyr7mzb58pdv0gsqkg6ds6kbgp6g25rrv1yya1611cljgvjh"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:tests? #f ; no automated test
#:phases
(modify-phases %standard-phases
(list
#:make-flags
#~(list (string-append "PREFIX=" #$output))
#:tests? #f ; no automated test
#:phases
'(modify-phases %standard-phases
(replace 'configure
(lambda _
(substitute* "Makefile"
(("-mtune=native") "")
(("-march=native") ""))
#t)))))
(("-march=native") "")))))))
(inputs
(list cairo
gtk+-2