From 8b8775454b90acedda2d0aa669a6584ea306e7f3 Mon Sep 17 00:00:00 2001 From: Rene Saavedra Date: Mon, 8 Feb 2016 13:31:27 +0800 Subject: gnu: Add nautilus. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/gnome.scm (nautilus): New variable. Co-authored-by: 宋文武 --- gnu/packages/gnome.scm | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 63121d47b9..49e61973a0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014 Ian Denhardt ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014, 2015 Federico Beffa -;;; Copyright © 2015 Sou Bunnbu +;;; Copyright © 2015, 2016 Sou Bunnbu ;;; Copyright © 2015 Mathieu Lirzin ;;; Copyright © 2015 Andy Wingo ;;; Copyright © 2015 David Hashe @@ -12,6 +12,7 @@ ;;; Copyright © 2015, 2016 Mark H Weaver ;;; Copyright © 2015 David Thompson ;;; Copyright © 2015, 2016 Efraim Flashner +;;; Copyright © 2016 Rene Saavedra ;;; ;;; This file is part of GNU Guix. ;;; @@ -4607,3 +4608,43 @@ applications, for instance the Vinagre client, GNOME Boxes and virt-viewer. 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 nautilus + (package + (name "nautilus") + (version "3.18.2") ; XXX: later version require gtk+-3.0 >= 3.18.5 + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0jj23n8vmmyc4gp5xhiz7slsxwksydp26blxi5m154yaw9lgdp38")))) + (build-system glib-or-gtk-build-system) + (arguments + '(#:configure-flags '("--disable-tracker") ; XXX: not packaged + ;; XXX: FAIL: check-nautilus + ;; Settings schema 'org.gnome.nautilus.preferences' is not installed + #:tests? #f)) + (native-inputs + `(("glib:bin" ,glib "bin") ; for glib-mkenums, etc. + ("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (propagated-inputs + `(("gtk+" ,gtk+))) ; required by libnautilus-extension.pc + (inputs + ;; TODO: add gvfs support. + `(("dconf" ,dconf) + ("exempi" ,exempi) + ("gnome-desktop" ,gnome-desktop) + ("libexif" ,libexif) + ("libxml2" ,libxml2))) + (synopsis "File manager for GNOME") + (home-page "https://wiki.gnome.org/Apps/Nautilus") + (description + "Nautilus (Files) is a file manager designed to fit the GNOME desktop +design and behaviour, giving the user a simple way to navigate and manage its +files.") + (license license:gpl2+))) -- cgit v1.2.3