gnu: tilda: Run guix style on tilda@1.5.4
* gnu/packages/terminals.scm (tilda): Re-indent. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
40109b1756
commit
a8dafaddf4
1 changed files with 18 additions and 20 deletions
|
@ -156,29 +156,27 @@ less to gain, as only the helper process is running with privileges (e.g.,
|
||||||
(package
|
(package
|
||||||
(name "tilda")
|
(name "tilda")
|
||||||
(version "1.5.4")
|
(version "1.5.4")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/lanoxx/tilda")
|
(uri (git-reference
|
||||||
(commit (string-append "tilda-" version))))
|
(url "https://github.com/lanoxx/tilda")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "tilda-" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
|
(base32 "0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
(add-after 'unpack 'make-po-writable
|
||||||
(add-after 'unpack 'make-po-writable
|
(lambda _
|
||||||
(lambda _
|
(for-each make-file-writable
|
||||||
(for-each make-file-writable (find-files "po" "."))
|
(find-files "po" ".")) #t)))))
|
||||||
#t)))))
|
(native-inputs (list autoconf automake gettext-minimal pkg-config))
|
||||||
(native-inputs
|
(inputs (list libconfuse vte))
|
||||||
(list autoconf automake gettext-minimal pkg-config))
|
|
||||||
(inputs
|
|
||||||
(list libconfuse vte))
|
|
||||||
(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
|
||||||
from the edge of a screen when a certain configurable hotkey is pressed. This
|
from the edge of a screen when a certain configurable hotkey is pressed. This
|
||||||
is similar to the built-in consoles in some applications. Tilda is highly
|
is similar to the built-in consoles in some applications. Tilda is highly
|
||||||
|
|
Reference in a new issue