mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: cool-retro-term: Upgrade to 1.2.0.
* gnu/packages/terminals.scm (cool-retro-term): Upgrade to 1.2.0. [source]: Use commit as version. [inputs]: Use qtquickcontrols2 instead of qtquickcontrols. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
51bbcc91b4
commit
c1f60c5c34
1 changed files with 6 additions and 8 deletions
|
@ -666,20 +666,18 @@ (define-public libvterm
|
|||
(license license:expat)))
|
||||
|
||||
(define-public cool-retro-term
|
||||
(let ((commit "1.1.1")
|
||||
(revision "0")) ;not used currently
|
||||
(package
|
||||
(name "cool-retro-term")
|
||||
(version "1.1.1")
|
||||
(version "1.2.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(uri (git-reference
|
||||
(url (string-append "https://github.com/Swordfish90/" name))
|
||||
(commit commit)
|
||||
(commit version)
|
||||
(recursive? #t)))
|
||||
(sha256
|
||||
(base32 "0wb6anchxa5jpn9c73kr4byrf2xlj8x8qzc5x7ny6saj7kbbvp75"))
|
||||
(base32 "02mj70gcpx9fvrhsy6iqwp399dya9iyakx940b6ws952d23xn337"))
|
||||
(modules '((guix build utils)
|
||||
(srfi srfi-1)
|
||||
(srfi srfi-26)
|
||||
|
@ -782,7 +780,7 @@ (define-public cool-retro-term
|
|||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
(list qtbase-5 qtdeclarative qtgraphicaleffects qtquickcontrols))
|
||||
(list qtbase-5 qtdeclarative qtgraphicaleffects qtquickcontrols2))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
@ -806,7 +804,7 @@ (define-public cool-retro-term
|
|||
(string-append (assoc-ref inputs i) qml))
|
||||
'("qtdeclarative"
|
||||
"qtgraphicaleffects"
|
||||
"qtquickcontrols")))))
|
||||
"qtquickcontrols2")))))
|
||||
#t)))
|
||||
(add-after 'install 'add-alternate-name
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
@ -832,7 +830,7 @@ (define-public cool-retro-term
|
|||
;; Fonts
|
||||
license:silofl1.1
|
||||
license:x11
|
||||
license:bsd-3)))))
|
||||
license:bsd-3))))
|
||||
|
||||
(define-public foot
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue