diff options
author | Brian Kubisiak <brian@kubisiak.com> | 2021-11-22 16:27:19 -0800 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-23 10:30:12 +0100 |
commit | 910bb1a71ba4dbb49a47f594e35a1e0821055f86 (patch) | |
tree | 68f9cadd98fcd9ece4e0be5dee7845f12edfc6e3 /gnu/packages/emacs-xyz.scm | |
parent | daf7b5ecef8de0e536ffd8d2957f022d010767a8 (diff) | |
download | guix-910bb1a71ba4dbb49a47f594e35a1e0821055f86.tar.gz |
gnu: Add emacs-bazel.
* gnu/packages/emacs-xyz (emacs-bazel): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f4e484dec2..a9f31163d7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -104,6 +104,7 @@ ;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org> ;;; Copyright © 2021 Simon South <simon@simonsouth.net> ;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org> +;;; Copyright © 2021 Brian Kubisiak <brian@kubisiak.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -12844,6 +12845,30 @@ files in Emacs. Files of this type (e.g., @file{BUILD.gn} or @file{*.gni}) are common in Chromium-derived projects.") (license license:bsd-3))) +(define-public emacs-bazel + ;; From 2021-11-21. + ;; No releases available. + (let ((commit "cdb2643dba39fe2bd64ba3b190b94d1ef1d83b18") + (revision "0")) + (package + (name "emacs-bazel") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bazelbuild/emacs-bazel-mode") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ln06dprnivx9zxm6n23ppyx7x4kbn0f85pxwvkq32aq7wnqz82m")))) + (build-system emacs-build-system) + (home-page "https://github.com/bazelbuild/emacs-bazel-mode") + (synopsis "Bazel support for Emacs") + (description + "This package provides support for the Bazel build system. See +@uref{https://bazel.build/} for background on Bazel.") + (license license:asl2.0)))) + (define-public emacs-gntp (package (name "emacs-gntp") |