1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add emacs-nushell-mode.

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

Change-Id: I216d8a9f7e7f89e379174a5d93020ff44c69d51f
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Skylar Hill 2025-02-17 19:47:28 +00:00 committed by Ian Eure
parent e81dd8e2c7
commit 2b94ea3880
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -35647,6 +35647,29 @@ corresponding Evil keys.")
implementation of Windows NT and LanManager compatible password encryption.") implementation of Windows NT and LanManager compatible password encryption.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-nushell-mode
(let ((commit "c179c3cf573b2cc9421dc08bf47e2d619c7791ee")
(revision "0"))
(package
(name "emacs-nushell-mode")
(version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mrkkrp/nushell-mode.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "08kx31h22szvmccswwmhyj615c9fqln45darlfkj7q84dmc2fd3n"))))
(build-system emacs-build-system)
(home-page "https://github.com/mrkkrp/nushell-mode")
(synopsis "Major mode for Nushell scripts")
(description
"This package provides a very basic version of major mode for Nushell shell
scripts.")
(license license:gpl3+))))
(define-public emacs-nadvice (define-public emacs-nadvice
(package (package
(name "emacs-nadvice") (name "emacs-nadvice")