mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 @@ (define-public tilda
|
|||
(package
|
||||
(name "tilda")
|
||||
(version "1.5.4")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/lanoxx/tilda")
|
||||
(commit (string-append "tilda-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/lanoxx/tilda")
|
||||
(commit (string-append "tilda-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0q2i9ny8sh7zjzgvkx8vcvk593wcvchjc4xq4nrlqdd377r7cg5q"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-po-writable
|
||||
(lambda _
|
||||
(for-each make-file-writable (find-files "po" "."))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
(list autoconf automake gettext-minimal pkg-config))
|
||||
(inputs
|
||||
(list libconfuse vte))
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-po-writable
|
||||
(lambda _
|
||||
(for-each make-file-writable
|
||||
(find-files "po" ".")) #t)))))
|
||||
(native-inputs (list autoconf automake gettext-minimal pkg-config))
|
||||
(inputs (list libconfuse vte))
|
||||
(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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue