mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: Add pluma.
* gnu/packages/mate.scm (pluma): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
446131be50
commit
a1eef8257e
1 changed files with 53 additions and 0 deletions
|
@ -35,6 +35,7 @@ (define-module (gnu packages mate)
|
||||||
#:use-module (gnu packages djvu)
|
#:use-module (gnu packages djvu)
|
||||||
#:use-module (gnu packages docbook)
|
#:use-module (gnu packages docbook)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
|
#:use-module (gnu packages enchant)
|
||||||
#:use-module (gnu packages file)
|
#:use-module (gnu packages file)
|
||||||
#:use-module (gnu packages fonts)
|
#:use-module (gnu packages fonts)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
|
@ -48,6 +49,7 @@ (define-module (gnu packages mate)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages imagemagick)
|
#:use-module (gnu packages imagemagick)
|
||||||
|
#:use-module (gnu packages iso-codes)
|
||||||
#:use-module (gnu packages javascript)
|
#:use-module (gnu packages javascript)
|
||||||
#:use-module (gnu packages libcanberra)
|
#:use-module (gnu packages libcanberra)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
|
@ -1390,6 +1392,57 @@ (define-public engrampa
|
||||||
"Engrampa is the archive manager for the MATE Desktop.")
|
"Engrampa is the archive manager for the MATE Desktop.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public pluma
|
||||||
|
(package
|
||||||
|
(name "pluma")
|
||||||
|
(version "1.18.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://pub.mate-desktop.org/releases/"
|
||||||
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1z0938yiygxipj2a77n9dv8v4253snrc5gbbnarcnim9xba2j3zz"))))
|
||||||
|
(build-system glib-or-gtk-build-system)
|
||||||
|
(arguments
|
||||||
|
`(; Tests can not succeed.
|
||||||
|
;; https://github.com/mate-desktop/mate-text-editor/issues/33
|
||||||
|
#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
`(("gettext" ,gettext-minimal)
|
||||||
|
("gtk-doc" ,gtk-doc)
|
||||||
|
("gobject-introspection" ,gobject-introspection)
|
||||||
|
("intltool" ,intltool)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("yelp-tools" ,yelp-tools)))
|
||||||
|
(inputs
|
||||||
|
`(("atk" ,atk)
|
||||||
|
("cairo" ,cairo)
|
||||||
|
("enchant" ,enchant)
|
||||||
|
("glib" ,glib)
|
||||||
|
("gtk+" ,gtk+)
|
||||||
|
("gtksourceview" ,gtksourceview)
|
||||||
|
("gdk-pixbuf" ,gdk-pixbuf)
|
||||||
|
("iso-codes" ,iso-codes)
|
||||||
|
("libcanberra" ,libcanberra)
|
||||||
|
("libx11" ,libx11)
|
||||||
|
("libsm" ,libsm)
|
||||||
|
("libpeas" ,libpeas)
|
||||||
|
("libxml2" ,libxml2)
|
||||||
|
("libice" ,libice)
|
||||||
|
("packagekit" ,packagekit)
|
||||||
|
("pango" ,pango)
|
||||||
|
("python-2" ,python-2)
|
||||||
|
("scrollkeeper" ,scrollkeeper)))
|
||||||
|
(home-page "https://mate-desktop.org/")
|
||||||
|
(synopsis "Text Editor for MATE")
|
||||||
|
(description
|
||||||
|
"Pluma is the text editor for the MATE Desktop.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define-public mate
|
(define-public mate
|
||||||
(package
|
(package
|
||||||
(name "mate")
|
(name "mate")
|
||||||
|
|
Loading…
Reference in a new issue