gnu: suil: Update to 0.10.0.
* gnu/packages/audio.scm (suil): Update to 0.10.0. [inputs]: Add gtk+. [description]: Remove version numbers from supported toolkits.
This commit is contained in:
parent
197484147a
commit
a00403c61c
|
@ -2055,14 +2055,14 @@ the Turtle syntax.")
|
||||||
(define-public suil
|
(define-public suil
|
||||||
(package
|
(package
|
||||||
(name "suil")
|
(name "suil")
|
||||||
(version "0.8.4")
|
(version "0.10.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.drobilla.net/suil-"
|
(uri (string-append "http://download.drobilla.net/suil-"
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1kji3lhha26qr6xm9j8ic5c40zbrrb5qnwm2qxzmsfxgmrz29wkf"))))
|
"0j489gm3fhnmwmbgw30bvd4byw1vsy4yazdlnji8jzhcz0qwb5cq"))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
|
@ -2070,7 +2070,8 @@ the Turtle syntax.")
|
||||||
'("CXXFLAGS=-std=gnu++11")))
|
'("CXXFLAGS=-std=gnu++11")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lv2" ,lv2)
|
`(("lv2" ,lv2)
|
||||||
("gtk+-2" ,gtk+-2)
|
("gtk+" ,gtk+-2)
|
||||||
|
("gtk+" ,gtk+)
|
||||||
("qt" ,qtbase)))
|
("qt" ,qtbase)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
@ -2084,7 +2085,7 @@ toolkit. The API is designed such that hosts do not need to explicitly
|
||||||
support specific toolkits – if Suil supports a particular toolkit, then UIs in
|
support specific toolkits – if Suil supports a particular toolkit, then UIs in
|
||||||
that toolkit will work in all hosts that use Suil automatically.
|
that toolkit will work in all hosts that use Suil automatically.
|
||||||
|
|
||||||
Suil currently supports every combination of Gtk 2, Qt 4, and X11.")
|
Suil currently supports every combination of Gtk, Qt, and X11.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public timidity++
|
(define-public timidity++
|
||||||
|
|
Loading…
Reference in New Issue