gnu: Add lxmenu-data.

* gnu/packages/lxde.scm (lxmenu-data): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
ng0 2017-01-23 15:42:45 +00:00 committed by Ludovic Courtès
parent 6bd4a88989
commit 7f7d52cc9a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -219,4 +219,27 @@ (define-public pcmanfm
(home-page "http://lxde.org")
(license license:gpl2+)))
(define-public lxmenu-data
(package
(name "lxmenu-data")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://downloads.sourceforge.net/lxde/"
name "-" version ".tar.xz"))
(sha256
(base32
"1f5sh2dvb3pdnjlcsyzq9543ck2jsqizkx3204cr22zm5s6j3qwz"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)))
(synopsis "Freedesktop.org desktop menus for LXDE")
(description
"Lxmenu-data provides files required to build freedesktop.org
menu spec-compliant desktop menus for LXDE.")
(home-page "http://lxde.org")
(license license:lgpl2.1+)))
;;; lxde.scm ends here