mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add gnome-autoar.
* gnu/packages/gnome.scm (gnome-autoar): New variable.
This commit is contained in:
parent
a88d5a0c25
commit
dc69fe187b
1 changed files with 29 additions and 0 deletions
|
@ -4973,6 +4973,35 @@ (define-public gtk-vnc
|
|||
as SASL, TLS and VeNCrypt. Additionally it supports encoding extensions.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public gnome-autoar
|
||||
(package
|
||||
(name "gnome-autoar")
|
||||
(version "0.1.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jcs6jgysg9n3zi3d1l4iqddzmczfdcvz7vkxn607p32nl8bhp7n"))))
|
||||
(build-system glib-or-gtk-build-system)
|
||||
(native-inputs
|
||||
`(("gnome-common" ,gnome-common)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
`(("libarchive" ,libarchive))) ; XXX document why
|
||||
(inputs
|
||||
`(("gtk+" ,gtk+)
|
||||
("nettle" ,nettle))) ; XXX: required by libarchive.pc
|
||||
(synopsis "Archives integration support for GNOME")
|
||||
(home-page "https://git.gnome.org/browse/gnome-autoar/")
|
||||
(description
|
||||
"GNOME Autoar is a library which makes creating and extracting archives
|
||||
easy, safe, and automatic.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public nautilus
|
||||
(package
|
||||
(name "nautilus")
|
||||
|
|
Loading…
Reference in a new issue