diff options
author | Mathieu Lirzin <mthl@openmailbox.org> | 2015-07-12 18:50:55 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@openmailbox.org> | 2015-07-22 00:15:15 +0200 |
commit | 83365461a7e2fd31546fe059a21dc20b82843513 (patch) | |
tree | bce2e34ae7346a09084a9526725579f90941500a /gnu | |
parent | 5d09263bfd5fe573ae74a922ceacb11ca5653c7b (diff) | |
download | guix-83365461a7e2fd31546fe059a21dc20b82843513.tar guix-83365461a7e2fd31546fe059a21dc20b82843513.tar.gz |
gnu: Add libfm-extra.
* gnu/packages/lxde.scm (libfm-extra): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lxde.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index 6d7580c1b2..f3611cae6b 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -17,6 +17,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages lxde) + #:use-module (gnu packages autotools) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages pkg-config) @@ -25,6 +26,31 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages)) +(define-public libfm-extra + (package + (name "libfm-extra") + (version "1.2.3") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/pcmanfm/" + "PCManFM%20%2B%20Libfm%20%28tarball%20" + "release%29/LibFM/libfm-" version ".tar.xz")) + (sha256 + (base32 + "1ygvw52262r3jp1f45m9cdpx5xgvd4rkyfszslfqvg2c99ig34n6")))) + (build-system gnu-build-system) + (arguments '(#:configure-flags '("--with-extra-only"))) + (inputs `(("glib" ,glib))) + (native-inputs `(("intltool" ,intltool) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (synopsis "File management support (extra library)") + (description "LibFM provides file management functions built on top of +Glib/GIO giving a higher-level API. This package contains standalone library +which extends libfm.") + (home-page "http://lxde.org") + (license license:gpl2+))) + (define-public lxappearance (package (name "lxappearance") |