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)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public cool-retro-term
|
(define-public cool-retro-term
|
||||||
(let ((commit "1.1.1")
|
|
||||||
(revision "0")) ;not used currently
|
|
||||||
(package
|
(package
|
||||||
(name "cool-retro-term")
|
(name "cool-retro-term")
|
||||||
(version "1.1.1")
|
(version "1.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url (string-append "https://github.com/Swordfish90/" name))
|
(url (string-append "https://github.com/Swordfish90/" name))
|
||||||
(commit commit)
|
(commit version)
|
||||||
(recursive? #t)))
|
(recursive? #t)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0wb6anchxa5jpn9c73kr4byrf2xlj8x8qzc5x7ny6saj7kbbvp75"))
|
(base32 "02mj70gcpx9fvrhsy6iqwp399dya9iyakx940b6ws952d23xn337"))
|
||||||
(modules '((guix build utils)
|
(modules '((guix build utils)
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
|
@ -782,7 +780,7 @@ (define-public cool-retro-term
|
||||||
#t))))
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list qtbase-5 qtdeclarative qtgraphicaleffects qtquickcontrols))
|
(list qtbase-5 qtdeclarative qtgraphicaleffects qtquickcontrols2))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -806,7 +804,7 @@ (define-public cool-retro-term
|
||||||
(string-append (assoc-ref inputs i) qml))
|
(string-append (assoc-ref inputs i) qml))
|
||||||
'("qtdeclarative"
|
'("qtdeclarative"
|
||||||
"qtgraphicaleffects"
|
"qtgraphicaleffects"
|
||||||
"qtquickcontrols")))))
|
"qtquickcontrols2")))))
|
||||||
#t)))
|
#t)))
|
||||||
(add-after 'install 'add-alternate-name
|
(add-after 'install 'add-alternate-name
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
@ -832,7 +830,7 @@ (define-public cool-retro-term
|
||||||
;; Fonts
|
;; Fonts
|
||||||
license:silofl1.1
|
license:silofl1.1
|
||||||
license:x11
|
license:x11
|
||||||
license:bsd-3)))))
|
license:bsd-3))))
|
||||||
|
|
||||||
(define-public foot
|
(define-public foot
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue