mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
gnu: Add gigolo.
* gnu/packages/xfce.scm (gigolo): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f2bbe73b81
commit
1f46534646
1 changed files with 23 additions and 0 deletions
|
@ -881,6 +881,29 @@ (define-public xfdesktop
|
|||
devices and folders.")
|
||||
(license gpl2+)))
|
||||
|
||||
(define-public gigolo
|
||||
(package
|
||||
(name "gigolo")
|
||||
(version "0.5.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://archive.xfce.org/src/apps/"
|
||||
name "/" (version-major+minor version)
|
||||
"/" name "-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hxv3lla567nnqxxly8xfi8fzmpcdhxb493x9hinr7szfnh1ljp3"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list pkg-config intltool))
|
||||
(inputs (list gtk+))
|
||||
(home-page "https://www.xfce.org/")
|
||||
(synopsis "Manage connections to remote file systems")
|
||||
(description
|
||||
"Gigolo is a graphical user interface to easily manage connections to
|
||||
remote file systems using GIO/GVfs. It allows you to quickly connect/mount
|
||||
local and remote file systems and manage bookmarks of such.")
|
||||
(license gpl2))) ;version 2 only
|
||||
|
||||
(define-public xfce4-terminal
|
||||
(package
|
||||
(name "xfce4-terminal")
|
||||
|
|
Loading…
Reference in a new issue