[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/08: gnu: Add gnome-commander.
From: |
guix-commits |
Subject: |
03/08: gnu: Add gnome-commander. |
Date: |
Mon, 5 Oct 2020 04:43:05 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 558f8d50072f1667840c22d727c83160a27a82c4
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Sep 27 18:37:40 2020 -0300
gnu: Add gnome-commander.
* gnu/packages/gnome.scm (gnome-commander): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/gnome.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 0947ffb..1422384 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -105,6 +105,7 @@
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages game-development)
+ #:use-module (gnu packages gcc)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages gimp)
@@ -1663,6 +1664,44 @@ uses duplicity as the backend, which supports
incremental backups and storage
either on a local, or remote machine via a number of methods.")
(license license:gpl3+)))
+(define-public gnome-commander
+ (package
+ (name "gnome-commander")
+ (version "1.10.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ "gnome-commander-" version ".tar.xz"))
+ (sha256
+ (base32 "0bis36awb73vhkncq8yr0qlnyaxynqkvmyqbg57ijqwd0m8hh4zg"))))
+ (build-system glib-or-gtk-build-system)
+ (native-inputs
+ `(("desktop-file-utils" ,desktop-file-utils)
+ ("gcc" ,gcc-8) ;required for -Wcast-function-type
+ ("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("googletest" ,googletest)
+ ("intltool" ,intltool)
+ ("itstool" ,itstool)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("gconf" ,gconf)
+ ("gnome-vfs" ,gnome-vfs)
+ ("gtk+" ,gtk+-2)
+ ("libxml2" ,libxml2)))
+ (home-page "https://gcmd.github.io/")
+ (synopsis "Two-pane graphical file manager for the GNOME desktop")
+ (description
+ "GNOME Commander is a two-pane graphical file manager using GNOME
+libraries. It aims to fulfill the demands of more advanced users who
+like to focus on file management, their work through special applications
+and running smart commands.")
+ (license license:gpl2+)))
+
(define-public gnome-user-docs
(package
(name "gnome-user-docs")
- branch master updated (5aa7d76 -> 62cf60d), guix-commits, 2020/10/05
- 01/08: environment: Turn "lo" up in network-less containers., guix-commits, 2020/10/05
- 02/08: gnu: seahorse: Update to 3.36., guix-commits, 2020/10/05
- 04/08: gnu: Add gnote., guix-commits, 2020/10/05
- 05/08: gnu: mergerfs: Update to 2.31.0., guix-commits, 2020/10/05
- 07/08: gnu: python-mutagen: Update to 1.45.1., guix-commits, 2020/10/05
- 06/08: gnu: mergerfs-tools: Update to 480296e., guix-commits, 2020/10/05
- 08/08: gnu: picard: Update to 2.4.4., guix-commits, 2020/10/05
- 03/08: gnu: Add gnome-commander.,
guix-commits <=