mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 17:53:26 -05:00
gnu: amsynth: Use G-expressions.
* gnu/packages/music.scm (amsynth)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
1cba8def9f
commit
0e96a71816
1 changed files with 10 additions and 11 deletions
|
@ -2414,17 +2414,16 @@ (define-public amsynth
|
|||
(base32 "0xqcm3ggaj004gfmlsds2x6q8dxlz1akz6dbwkynv9vvdnizm91r"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-file-names
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/GUI/editor_pane.c"
|
||||
(("/usr/bin/unzip")
|
||||
(string-append (assoc-ref inputs "unzip") "/bin/unzip")))
|
||||
(search-input-file inputs "bin/unzip")))
|
||||
(substitute* "src/GUI/MainMenu.cpp"
|
||||
(("/usr/bin/which")
|
||||
(string-append (assoc-ref inputs "which") "/bin/which")))
|
||||
#t)))))
|
||||
(search-input-file inputs "bin/which"))))))))
|
||||
(inputs
|
||||
(list alsa-lib
|
||||
gtk+-2
|
||||
|
|
Loading…
Reference in a new issue