diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-02-02 11:21:18 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-02-02 11:42:11 +0100 |
commit | 710667108827126daf36ced9118c3d4221dc4f7b (patch) | |
tree | 6850e08c064016d5c933b52fed5e2341fed64ccc /gnu | |
parent | bdccd7e101e461c1db1ba8e911992a051e5a6b0d (diff) | |
download | patches-710667108827126daf36ced9118c3d4221dc4f7b.tar patches-710667108827126daf36ced9118c3d4221dc4f7b.tar.gz |
gnu: Add emacs-google-c-style.
* gnu/packages/emacs-xyz.scm (emacs-google-c-style): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index feef248fbc..6d325a6637 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18,7 +18,7 @@ ;;; Copyright © 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net> -;;; Copyright © 2017, 2018 Mathieu Othacehe <m.othacehe@gmail.com> +;;; Copyright © 2017, 2018, 2019 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017, 2018, 2019 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com> ;;; Copyright © 2017, 2018 Kyle Meyer <kyle@kyleam.com> @@ -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+)))) |