mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: quassel: Update to 0.13.0.
* gnu/packages/irc.scm (quassel): Update to 0.13.0. [arguments]: Update configure flags. [inputs]: Add qtmultimedia.
This commit is contained in:
parent
08861d259b
commit
4ad62876cb
1 changed files with 9 additions and 8 deletions
|
@ -65,7 +65,7 @@ (define-module (gnu packages irc)
|
||||||
(define-public quassel
|
(define-public quassel
|
||||||
(package
|
(package
|
||||||
(name "quassel")
|
(name "quassel")
|
||||||
(version "0.12.5")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -73,7 +73,7 @@ (define-public quassel
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qkl3sb4ijx4k17m0c42j2p5bc4jymypwhmplm942rbrzm6mg50q"))
|
"0xp9mppxl63qzgsdyprmblvfrj0bb9z57kfc088gvcavvq1210nr"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
;; We don't want to install the bundled scripts.
|
;; We don't want to install the bundled scripts.
|
||||||
(snippet
|
(snippet
|
||||||
|
@ -86,13 +86,13 @@ (define-public quassel
|
||||||
(arguments
|
(arguments
|
||||||
;; The three binaries are not mutually exlusive, and are all built
|
;; The three binaries are not mutually exlusive, and are all built
|
||||||
;; by default.
|
;; by default.
|
||||||
'(#:configure-flags '(;;"-DWANT_QTCLIENT=OFF" ; 5.2 MiB
|
'(#:configure-flags '(;;"-DWANT_QTCLIENT=OFF" ; 6.1 MiB
|
||||||
;;"-DWANT_CORE=OFF" ; 2.4 MiB
|
;;"-DWANT_CORE=OFF" ; 3.0 MiB
|
||||||
;;"-DWANT_MONO=OFF" ; 6.4 MiB
|
;;"-DWANT_MONO=OFF" ; 7.6 MiB
|
||||||
"-DUSE_QT5=ON" ; default is qt4
|
|
||||||
"-DWITH_KDE=OFF" ; no to kde integration ...
|
"-DWITH_KDE=OFF" ; no to kde integration ...
|
||||||
"-DWITH_OXYGEN=ON" ; therefore we install bundled icons
|
"-DWITH_BUNDLED_ICONS=ON" ; so we install bundled icons
|
||||||
"-DWITH_WEBKIT=OFF") ; we don't depend on qtwebkit
|
"-DWITH_OXYGEN_ICONS=ON" ; also the oxygen ones
|
||||||
|
"-DWITH_WEBENGINE=OFF") ; we don't depend on qtwebengine
|
||||||
#:tests? #f)) ; no test target
|
#:tests? #f)) ; no test target
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
@ -101,6 +101,7 @@ (define-public quassel
|
||||||
(inputs
|
(inputs
|
||||||
`(("qca" ,qca)
|
`(("qca" ,qca)
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
|
("qtmultimedia" ,qtmultimedia)
|
||||||
("qtscript" ,qtscript)
|
("qtscript" ,qtscript)
|
||||||
("snorenotify" ,snorenotify)
|
("snorenotify" ,snorenotify)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Loading…
Reference in a new issue