diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-10-22 12:03:30 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-10-22 12:13:37 +0200 |
commit | a00403c61c3df9777dc1c9d8cb342d00cb31914f (patch) | |
tree | 437fe97c78c3f429c32c80767bdde2b3e5fa872a /gnu/packages/audio.scm | |
parent | 197484147a24864cd308c22b8c1d093fb8ebe91d (diff) | |
download | patches-a00403c61c3df9777dc1c9d8cb342d00cb31914f.tar patches-a00403c61c3df9777dc1c9d8cb342d00cb31914f.tar.gz |
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.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index afae5c159d..aaac1c357e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2055,14 +2055,14 @@ the Turtle syntax.") (define-public suil (package (name "suil") - (version "0.8.4") + (version "0.10.0") (source (origin (method url-fetch) (uri (string-append "http://download.drobilla.net/suil-" version ".tar.bz2")) (sha256 (base32 - "1kji3lhha26qr6xm9j8ic5c40zbrrb5qnwm2qxzmsfxgmrz29wkf")))) + "0j489gm3fhnmwmbgw30bvd4byw1vsy4yazdlnji8jzhcz0qwb5cq")))) (build-system waf-build-system) (arguments `(#:tests? #f ; no check target @@ -2070,7 +2070,8 @@ the Turtle syntax.") '("CXXFLAGS=-std=gnu++11"))) (inputs `(("lv2" ,lv2) - ("gtk+-2" ,gtk+-2) + ("gtk+" ,gtk+-2) + ("gtk+" ,gtk+) ("qt" ,qtbase))) (native-inputs `(("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 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))) (define-public timidity++ |