mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-nyxt.
* gnu/packages/emacs-xyz.scm (emacs-nyxt): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
29be505fce
commit
753450db45
1 changed files with 32 additions and 0 deletions
|
@ -256,6 +256,7 @@
|
||||||
#:use-module (gnu packages erlang)
|
#:use-module (gnu packages erlang)
|
||||||
#:use-module (gnu packages statistics)
|
#:use-module (gnu packages statistics)
|
||||||
#:use-module (gnu packages libcanberra)
|
#:use-module (gnu packages libcanberra)
|
||||||
|
#:use-module (gnu packages web-browsers)
|
||||||
#:use-module (gnu packages wget)
|
#:use-module (gnu packages wget)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
|
@ -27691,6 +27692,37 @@ Nix expressions. It supports syntax highlighting, indenting and refilling of
|
||||||
comments.")
|
comments.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public emacs-nyxt
|
||||||
|
(package
|
||||||
|
(name "emacs-nyxt")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://git.sr.ht/~conses/nyxt.el")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1hgb10pk5m3v2gsl4h6i821nyzksss0rk4hhjnfb7nm98lalzbl6"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-file-name
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(emacs-substitute-variables "nyxt.el"
|
||||||
|
("nyxt-path"
|
||||||
|
(search-input-file inputs "/bin/nyxt"))))))))
|
||||||
|
(inputs (list nyxt))
|
||||||
|
(propagated-inputs (list emacs-sly))
|
||||||
|
(home-page "https://git.sr.ht/~conses/nyxt.el")
|
||||||
|
(synopsis "Interact with Nyxt from Emacs")
|
||||||
|
(description "This package consists of custom logic to interact with Nyxt
|
||||||
|
from Emacs.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-libmpdel
|
(define-public emacs-libmpdel
|
||||||
(package
|
(package
|
||||||
(name "emacs-libmpdel")
|
(name "emacs-libmpdel")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue