[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
75/85: gnu: Add gnome-autoar.
From: |
Mark H. Weaver |
Subject: |
75/85: gnu: Add gnome-autoar. |
Date: |
Wed, 11 Jan 2017 16:36:09 +0000 (UTC) |
mhw pushed a commit to branch gnome-updates
in repository guix.
commit dc69fe187b287fb3956da4fe7d5509632c90ef1f
Author: Mark H Weaver <address@hidden>
Date: Mon Jan 9 18:32:00 2017 -0500
gnu: Add gnome-autoar.
* gnu/packages/gnome.scm (gnome-autoar): New variable.
---
gnu/packages/gnome.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index af843f5..aa3a1bc 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4973,6 +4973,35 @@ GTK-VNC implements client side RFB protocol and
authentication extensions such
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")
- 76/85: gnu: Add tracker., (continued)
- 76/85: gnu: Add tracker., Mark H. Weaver, 2017/01/11
- 06/85: gnu: dbus-glib: Update to 0.108., Mark H. Weaver, 2017/01/11
- 15/85: gnu: gsettings-desktop-schemas: Update to 3.22.0., Mark H. Weaver, 2017/01/11
- 42/85: gnu: gnome-themes-standard: Update to 3.22.2., Mark H. Weaver, 2017/01/11
- 56/85: gnu: devhelp: Update to 3.22.0., Mark H. Weaver, 2017/01/11
- 68/85: gnu: Add libgnome-games-support., Mark H. Weaver, 2017/01/11
- 50/85: gnu: totem: Update to 3.22.0., Mark H. Weaver, 2017/01/11
- 70/85: gnu: gnome-mines: Update to 3.22.2., Mark H. Weaver, 2017/01/11
- 55/85: gnu: yelp: Update to 3.22.0., Mark H. Weaver, 2017/01/11
- 78/85: gnu: network-manager: Update to 1.4.4., Mark H. Weaver, 2017/01/11
- 75/85: gnu: Add gnome-autoar.,
Mark H. Weaver <=