guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add emacs-google-c-style.


From: guix-commits
Subject: 02/02: gnu: Add emacs-google-c-style.
Date: Sat, 2 Feb 2019 05:42:31 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 710667108827126daf36ced9118c3d4221dc4f7b
Author: Mathieu Othacehe <address@hidden>
Date:   Sat Feb 2 11:21:18 2019 +0100

    gnu: Add emacs-google-c-style.
    
    * gnu/packages/emacs-xyz.scm (emacs-google-c-style): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index feef248..6d325a6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -18,7 +18,7 @@
 ;;; Copyright © 2016, 2017, 2018 Alex Vong <address@hidden>
 ;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <address@hidden>
 ;;; Copyright © 2017 Christopher Baines <address@hidden>
-;;; Copyright © 2017, 2018 Mathieu Othacehe <address@hidden>
+;;; Copyright © 2017, 2018, 2019 Mathieu Othacehe <address@hidden>
 ;;; Copyright © 2017, 2018, 2019 Clément Lassieur <address@hidden>
 ;;; Copyright © 2017 Vasile Dumitrascu <address@hidden>
 ;;; Copyright © 2017, 2018 Kyle Meyer <address@hidden>
@@ -13061,3 +13061,25 @@ buffer and launches Magit from the status buffer for 
the project at point.")
 and black color themes for Emacs.  The themes are intended to be used with
 GUI.")
     (license license:gpl3+)))
+
+(define-public emacs-google-c-style
+  (let ((commit "6271f3f473ceb3a7fef99388a3040903b1a145f1")
+        (revision "0"))
+    (package
+      (name "emacs-google-c-style")
+      (version (git-version "0.1" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/google/styleguide";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1jghyyasdl15c4gaqaxmdn43am63k6bykn5ab83f1ahv9zi1krxk"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/google/styleguide";)
+      (synopsis "Emacs settings file for Google C/C++ style")
+      (description "@code{emacs-google-c-style} provides an Emacs settings
+file for Google C and C++ style.")
+      (license license:gpl1+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]