gnu: indent: Cosmetic change.
authorAndreas Enge <andreas@enge.fr>
Wed, 21 Aug 2013 10:02:20 +0000 (12:02 +0200)
committerAndreas Enge <andreas@enge.fr>
Wed, 21 Aug 2013 10:05:18 +0000 (12:05 +0200)
* gnu/packages/indent.scm (indent): Use #:renamer on licenses to be better
    suited as an example for packaging.

gnu/packages/indent.scm

index 6789908..3ae1c9e 100644 (file)
@@ -18,7 +18,8 @@
 
 (define-module (gnu packages indent)
   #:use-module (gnu packages)
-  #:use-module (guix licenses)
+  #:use-module ((guix licenses)
+                #:renamer (symbol-prefix-proc 'license:))
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu))
@@ -40,5 +41,5 @@
 from one style of writing C to another. Indent understands a substantial
 amount about the syntax of C, but it also attempts to cope with incomplete
 and misformed syntax. The GNU style of indenting is the default.")
-   (license gpl3+)
+   (license license:gpl3+)
    (home-page "http://www.gnu.org/software/indent/")))