mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add qtspell.
* gnu/packages/qt.scm (qtspell): New variable.
This commit is contained in:
parent
d8b9904e41
commit
3844166f1c
1 changed files with 30 additions and 0 deletions
|
@ -1548,6 +1548,36 @@ (define-public qtspeech
|
|||
In such a scenario, the messaging application can read out the incoming
|
||||
message.")))
|
||||
|
||||
(define-public qtspell
|
||||
(package
|
||||
(name "qtspell")
|
||||
(version "0.9.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/manisandro/qtspell.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1081makirjxixz44ghwz362vgnk5wcks6ni6w01pl667x8wggsd2"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ;no test
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("qttools" ,qttools)))
|
||||
(inputs
|
||||
`(("enchant" ,enchant)
|
||||
("qtbase" ,qtbase)))
|
||||
(home-page "https://github.com/manisandro/qtspell")
|
||||
(synopsis "Spell checking for Qt text widgets")
|
||||
(description
|
||||
"QtSpell adds spell-checking functionality to Qt's text widgets,
|
||||
using the Enchant spell-checking library.")
|
||||
;; COPYING file specify GPL3, but source code files all refer to GPL2+.
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public qtwebengine
|
||||
(package
|
||||
(inherit qtsvg)
|
||||
|
|
Loading…
Reference in a new issue