guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add uncrustify.


From: Ludovic Courtès
Subject: 01/03: gnu: Add uncrustify.
Date: Wed, 23 May 2018 06:17:22 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9c4dcfaf66d37faeb165e9284f6a57871e96e1ac
Author: Pierre Neidhardt <address@hidden>
Date:   Sun May 20 14:31:55 2018 +0200

    gnu: Add uncrustify.
    
    * gnu/packages/code.scm (uncrustify): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/code.scm         | 43 +++++++++++++++++++++++++++++++++++++++++++
 gnu/packages/pretty-print.scm |  1 +
 2 files changed, 44 insertions(+)

diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 15fdf9d..24398fa 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2017, 2018 Clément Lassieur <address@hidden>
 ;;; Copyright © 2017 Andy Wingo <address@hidden>
 ;;; Copyright © 2018 Fis Trivial <address@hidden>
+;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -527,3 +528,45 @@ produce colored output.")
 output is a graphviz-dot file, a Gexf-XML file or a list of the deepest
 independent targets.")
     (license license:expat)))
+
+(define-public uncrustify
+  (package
+    (name "uncrustify")
+    (version "0.67")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/uncrustify/uncrustify/archive/";
+                    "uncrustify-" version ".zip"))
+              (sha256
+               (base32
+                "0n13kq0nsm35fxhdp0f275n4x0w88hdv3bdjy0hgvv42x0dx5zyp"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'unpack-etc
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             ;; Configuration samples are not installed by default.
+             (let* ((output (assoc-ref outputs "out"))
+                    (etcdir (string-append output "/etc")))
+               (for-each (lambda (l)
+                           (install-file l etcdir))
+                         (find-files "etc" "\\.cfg$")))
+             #t)))))
+    (home-page "http://uncrustify.sourceforge.net/";)
+    (synopsis "Code formatter for C and other related languages")
+    (description
+     "Beautify source code in many languages of the C family (C, C++, C#,
address@hidden, D, Java, Pawn, and Vala).  Features:
address@hidden
address@hidden Indent and align code.
address@hidden Reformat comments (a little bit).
address@hidden Fix inter-character spacing.
address@hidden Add or remove parens / braces.
address@hidden Supports embedded SQL @code{EXEC SQL} stuff.
address@hidden Highly configurable - More than 600 configurable options.
address@hidden itemize\n")
+    (license license:gpl2+)))
diff --git a/gnu/packages/pretty-print.scm b/gnu/packages/pretty-print.scm
index 6edfba9..29b0039 100644
--- a/gnu/packages/pretty-print.scm
+++ b/gnu/packages/pretty-print.scm
@@ -322,3 +322,4 @@ highlighting.  Language definitions and color themes are 
customizable.")
      "Artistic Style is a source code indenter, formatter, and beautifier for
 the C, C++, C++/CLI, Objective‑C, C#, and Java programming languages.")
     (license lgpl3+)))
+



reply via email to

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