mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: sooperlooper: Remove input labels.
* gnu/packages/music.scm (sooperlooper)[inputs]: Remove labels. [arguments]: Use SEARCH-INPUT-DIRECTORY instead of labels.
This commit is contained in:
parent
1fb51bd5af
commit
ef51ca870f
1 changed files with 15 additions and 15 deletions
|
@ -3945,13 +3945,13 @@ with a number of bugfixes and changes to improve IT playback.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'add-sigc++-includes
|
(add-after 'unpack 'add-sigc++-includes
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((sig (assoc-ref inputs "libsigc++"))
|
(let ((sig (search-input-directory inputs "include/sigc++-2.0"))
|
||||||
(xml (assoc-ref inputs "libxml2"))
|
(xml (search-input-directory inputs "include/libxml2"))
|
||||||
(cwd (getcwd)))
|
(cwd (getcwd)))
|
||||||
(setenv "CPATH"
|
(setenv "CPATH"
|
||||||
(string-append sig "/include/sigc++-2.0:"
|
(string-append sig ":"
|
||||||
sig "/lib/sigc++-2.0/include:"
|
sig "../../lib/sigc++-2.0/include:"
|
||||||
xml "/include/libxml2/:"
|
xml ":"
|
||||||
cwd "/libs/pbd:"
|
cwd "/libs/pbd:"
|
||||||
cwd "/libs/midi++:"
|
cwd "/libs/midi++:"
|
||||||
(or (getenv "CPATH") ""))))
|
(or (getenv "CPATH") ""))))
|
||||||
|
@ -3978,16 +3978,16 @@ with a number of bugfixes and changes to improve IT playback.")
|
||||||
(("static char") "static const char"))
|
(("static char") "static const char"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("jack" ,jack-1)
|
(list jack-1
|
||||||
("alsa-lib" ,alsa-lib)
|
alsa-lib
|
||||||
("wxwidgets" ,wxwidgets-gtk2)
|
wxwidgets-gtk2
|
||||||
("libsndfile" ,libsndfile)
|
libsndfile
|
||||||
("libsamplerate" ,libsamplerate)
|
libsamplerate
|
||||||
("liblo" ,liblo)
|
liblo
|
||||||
("rubberband" ,rubberband)
|
rubberband
|
||||||
("libxml2" ,libxml2)
|
libxml2
|
||||||
("libsigc++" ,libsigc++-2)
|
libsigc++-2
|
||||||
("ncurses" ,ncurses)))
|
ncurses))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(home-page "https://sonosaurus.com/sooperlooper/")
|
(home-page "https://sonosaurus.com/sooperlooper/")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue