mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-openwith.
* gnu/packages/emacs-xyz.scm (emacs-openwith) New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
a4c36e6593
commit
0f4c3ca9ec
1 changed files with 25 additions and 0 deletions
|
@ -79,6 +79,7 @@ (define-module (gnu packages emacs-xyz)
|
||||||
#:use-module (guix cvs-download)
|
#:use-module (guix cvs-download)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix hg-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system emacs)
|
#:use-module (guix build-system emacs)
|
||||||
|
@ -10250,6 +10251,30 @@ (define-public emacs-ws-butler
|
||||||
characters from end of lines.")
|
characters from end of lines.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-openwith
|
||||||
|
(let ((changeset "aeb78782ec87680ea9f082a3f20a3675b3770cf9")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "emacs-openwith")
|
||||||
|
(home-page "https://bitbucket.org/jpkotta/openwith")
|
||||||
|
(version (git-version "0.0.1" revision changeset))
|
||||||
|
(source (origin
|
||||||
|
(method hg-fetch)
|
||||||
|
(uri (hg-reference (url home-page) (changeset changeset)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(synopsis "Open external applications for files with Emacs")
|
||||||
|
(description
|
||||||
|
"This package enables you to associate file name patterns with external
|
||||||
|
applications that are automatically invoked when you use commands like
|
||||||
|
@code{find-file}. For example, you can have it open @code{png} files with
|
||||||
|
@code{feh} and @code{mp4} files with @code{mpv}. This is especially useful
|
||||||
|
when browsing files with Dired.")
|
||||||
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emacs-org-edit-latex
|
(define-public emacs-org-edit-latex
|
||||||
(package
|
(package
|
||||||
(name "emacs-org-edit-latex")
|
(name "emacs-org-edit-latex")
|
||||||
|
|
Loading…
Reference in a new issue