Skip to content
Snippets Groups Projects
Unverified Commit 40131b75 authored by Niklas Eklund's avatar Niklas Eklund Committed by Nicolas Goaziou
Browse files

gnu: Add emacs-quickrun.


* gnu/packages/emacs-xyz.scm (emacs-quickrun): New variable.

Signed-off-by: default avatarNicolas Goaziou <mail@nicolasgoaziou.fr>
parent 97e98e22
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,7 @@ ...@@ -78,6 +78,7 @@
;;; Copyright © 2020 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2020 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
;;; Copyright © 2020 Peng Mei Yu <i@pengmeiyu.com> ;;; Copyright © 2020 Peng Mei Yu <i@pengmeiyu.com>
;;; Copyright © 2020 Niklas Eklund <niklas.eklund@posteo.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -7490,6 +7491,29 @@ (define-public emacs-queue ...@@ -7490,6 +7491,29 @@ (define-public emacs-queue
\"output-restricted deque\".") \"output-restricted deque\".")
(license license:gpl3+))) (license license:gpl3+)))
   
(define-public emacs-quickrun
(package
(name "emacs-quickrun")
(version "2.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacsorphanage/quickrun")
(commit version)))
(sha256
(base32 "0a1n2v09h0n7d9p2izflqqang4ny0b46dlqvmxvkkik4bb6f4wcz"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(home-page "https://github.com/emacsorphanage/quickrun")
(synopsis "Execute editing buffer and show its output quickly")
(description
"This package evaluates the content of a buffer, or region, and displays
the result. Quickrun executes not only script languages (Perl, Ruby, Python
etc), but also compiling languages (C, C++, Go, Java etc) and markup
languages.")
(license license:gpl3+)))
(define-public emacs-pkg-info (define-public emacs-pkg-info
(package (package
(name "emacs-pkg-info") (name "emacs-pkg-info")
......
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