diff options
-rw-r--r-- | gnu/packages/terminals.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 009809442c..17e4fd9c00 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -666,20 +666,18 @@ embedded kernel situations.") (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 @@ embedded kernel situations.") #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 @@ embedded kernel situations.") (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 @@ eye-candy, customizable, and reasonably lightweight.") ;; Fonts license:silofl1.1 license:x11 - license:bsd-3))))) + license:bsd-3)))) (define-public foot (package |