Skip to content
Snippets Groups Projects
Commit 6e6b5344 authored by Mathieu Lirzin's avatar Mathieu Lirzin
Browse files

gnu: Add menu-cache.

* gnu/packages/lxde.scm (menu-cache): New variable.
parent 83365461
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,8 @@ (define-module (gnu packages lxde) ...@@ -24,7 +24,8 @@ (define-module (gnu packages lxde)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix download) #:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)) #:use-module (guix packages)
#:use-module (guix utils))
(define-public libfm-extra (define-public libfm-extra
(package (package
...@@ -72,4 +73,26 @@ (define-public lxappearance ...@@ -72,4 +73,26 @@ (define-public lxappearance
(home-page "http://lxde.org") (home-page "http://lxde.org")
(license license:gpl2+))) (license license:gpl2+)))
(define-public menu-cache
(package
(name "menu-cache")
(version "1.0.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/project/lxde/" name "/"
(version-major+minor version) "/"
name "-" version ".tar.xz"))
(sha256
(base32
"1bws84fiwk3anp30hcr0lw1xw5cgp44x5ik2yv2ijcgxpcvz8zgz"))))
(build-system gnu-build-system)
(inputs `(("glib" ,glib)
("libfm" ,libfm-extra)))
(native-inputs `(("pkg-config" ,pkg-config)))
(synopsis "LXDE implementation of the freedesktop menu's cache")
(description "Menu-cache is a library creating and utilizing caches to
speed up the access to freedesktop.org defined application menus.")
(home-page "http://lxde.org")
(license license:lgpl2.1+)))
;;; lxde.scm ends here ;;; lxde.scm ends here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment