summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoel Janssen <roel@gnu.org>2017-07-03 13:02:07 +0200
committerRoel Janssen <roel@gnu.org>2017-07-03 13:02:07 +0200
commitfd2d17cdae71eb8bf616d10b9fdbbda6a9d4b644 (patch)
tree2a33bf16f8d942de438f1e1e11b08f14dde4648f
parentbe1033a3349069ee722bf25c804b3bfee4467886 (diff)
gnu: Add emacs-sparql-mode.
* gnu/packages/emacs.scm (emacs-sparql-mode): New variable.
-rw-r--r--gnu/packages/emacs.scm23
1 files changed, 22 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 5177c48a268..a8bf05ca89d 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -11,7 +11,7 @@
11;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> 11;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
12;;; Copyright © 2016 David Thompson <davet@gnu.org> 12;;; Copyright © 2016 David Thompson <davet@gnu.org>
13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com> 13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
14;;; Copyright © 2016 Roel Janssen <roel@gnu.org> 14;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
15;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net> 15;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> 16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
17;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr> 17;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
@@ -3025,6 +3025,27 @@ complement basic functions provided by @code{subr.el}. All provided functions
3025work on lists, strings and vectors.") 3025work on lists, strings and vectors.")
3026 (license license:gpl3+))) 3026 (license license:gpl3+)))
3027 3027
3028(define-public emacs-sparql-mode
3029 (package
3030 (name "emacs-sparql-mode")
3031 (version "2.0.1")
3032 (source (origin
3033 (method url-fetch)
3034 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
3035 "v" version ".tar.gz"))
3036 (file-name (string-append name "-" version ".tar.gz"))
3037 (sha256
3038 (base32
3039 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
3040 (build-system emacs-build-system)
3041 (home-page "https://github.com/ljos/sparql-mode")
3042 (synopsis "SPARQL mode for Emacs")
3043 (description "This package provides a major mode for Emacs that provides
3044syntax highlighting for SPARQL. It also provides a way to execute queries
3045against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
3046possible to query other endpoints like DBPedia.")
3047 (license license:gpl3+)))
3048
3028(define-public emacs-better-defaults 3049(define-public emacs-better-defaults
3029 (package 3050 (package
3030 (name "emacs-better-defaults") 3051 (name "emacs-better-defaults")