mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add qite.
* gnu/packages/qt.scm (qite): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
7f7ad800b0
commit
54fd3167ff
1 changed files with 33 additions and 0 deletions
|
@ -105,6 +105,39 @@ (define-module (gnu packages qt)
|
|||
#:use-module (gnu packages xml)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public qite
|
||||
(let ((commit "75fb3b6bbd5c6a5a8fc35e08a6efbfb588ed546a")
|
||||
(revision "74"))
|
||||
(package
|
||||
(name "qite")
|
||||
(version (git-version "0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/Ri0n/qite")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0jmmgy9pvk9hwwph1nwy7hxhczy8drhl4ymhnjjn6yx7bckssvsq"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "libqite")
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("qtbase" ,qtbase)
|
||||
("qtmultimedia" ,qtmultimedia)))
|
||||
(home-page "https://github.com/Ri0n/qite/")
|
||||
(synopsis "Qt Interactive Text Elements")
|
||||
(description "Qite allows to manage interactive elements on QTextEdit.")
|
||||
(license license:asl2.0))))
|
||||
|
||||
(define-public qt5ct
|
||||
(package
|
||||
(name "qt5ct")
|
||||
|
|
Loading…
Reference in a new issue