3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add emacs-csharp-mode.

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

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
AuPath 2020-11-07 11:46:39 +01:00 committed by Nicolas Goaziou
parent 83dee0e5b2
commit ab138f824f
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -11371,6 +11371,30 @@ constructs.")
configuration of Chinese fonts.")
(license license:gpl2+)))
(define-public emacs-csharp-mode
(package
(name "emacs-csharp-mode")
(version "0.10.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/josteink/csharp-mode")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vwkbla2gkfa9dzxfvrvr7hd2z16769iwbycl7k6l701dnwli1fw"))))
(build-system emacs-build-system)
(home-page "https://github.com/josteink/csharp-mode")
(synopsis "Major mode for C# code")
(description
"This is a C# editing mode for Emacs, based on CC mode. It handles
syntax coloring, indentation, insertion of matched pairs of curly braces and
documentation generation. In addition, it provides menu-based navigation
using Imenu, and Compilation mode support for MSBuild, devenv and xbuild.")
;; XXX: Project switched to GPL3+ after 0.10.0 release.
(license license:gpl2+)))
(define-public emacs-php-mode
(package
(name "emacs-php-mode")