gnu: tilda: Update to 1.3.0.
* gnu/packages/terminals.scm (tilda): Update to 1.3.0. [inputs]: Switch vte from 0.36 to 0.40, remove zip.
This commit is contained in:
parent
e30be98653
commit
d2a5210844
|
@ -28,20 +28,19 @@
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages wm)
|
#:use-module (gnu packages wm))
|
||||||
#:use-module (gnu packages zip))
|
|
||||||
|
|
||||||
(define-public tilda
|
(define-public tilda
|
||||||
(package
|
(package
|
||||||
(name "tilda")
|
(name "tilda")
|
||||||
(version "1.2.4")
|
(version "1.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/lanoxx/tilda/archive/"
|
(uri (string-append "https://github.com/lanoxx/tilda/archive/"
|
||||||
"tilda-" version ".zip"))
|
"tilda-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06r7q0b1xjclagsnw0ilxhw5az5ddly2f7xc1lcwlrf337x0jrar"))))
|
"1bbn2fflngx0g18ssvnzgzprvn1w6wc2y03sqzjwvxds488lhndx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
@ -54,14 +53,12 @@
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("gettext" ,gnu-gettext)
|
("gettext" ,gnu-gettext)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)))
|
||||||
("unzip" ,unzip)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib "bin")
|
`(("glib" ,glib "bin")
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
("libconfuse" ,libconfuse)
|
("libconfuse" ,libconfuse)
|
||||||
("vte" ,vte-0.36))) ; TODO: try to use vte-0.38+ in 1.3
|
("vte" ,vte)))
|
||||||
; https://github.com/lanoxx/tilda/issues/94
|
|
||||||
(synopsis "GTK+-based drop-down terminal")
|
(synopsis "GTK+-based drop-down terminal")
|
||||||
(description "Tilda is a terminal emulator similar to normal terminals like
|
(description "Tilda is a terminal emulator similar to normal terminals like
|
||||||
gnome-terminal (GNOME) or Konsole (KDE), with the difference that it drops down
|
gnome-terminal (GNOME) or Konsole (KDE), with the difference that it drops down
|
||||||
|
|
Loading…
Reference in New Issue