[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add prefix to license imports in (gnu packages avr).
From: |
Ricardo Wurmus |
Subject: |
01/01: gnu: Add prefix to license imports in (gnu packages avr). |
Date: |
Wed, 11 Nov 2015 20:24:20 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 42f8504ccc7729b536e3137e71eb45806968e41a
Author: Ricardo Wurmus <address@hidden>
Date: Fri Nov 6 22:35:33 2015 +0100
gnu: Add prefix to license imports in (gnu packages avr).
* gnu/packages/avr.scm: Import (guix licenses) with prefix "license:".
---
gnu/packages/avr.scm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm
index d7ca1b1..105c741 100644
--- a/gnu/packages/avr.scm
+++ b/gnu/packages/avr.scm
@@ -17,7 +17,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages avr)
- #:use-module (guix licenses)
+ #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
@@ -48,4 +48,4 @@
(description
"AVR Libc is a project whose goal is to provide a high quality C library
for use with GCC on Atmel AVR microcontrollers.")
- (license (non-copyleft "http://www.nongnu.org/avr-libc/LICENSE.txt"))))
+ (license (license:non-copyleft
"http://www.nongnu.org/avr-libc/LICENSE.txt"))))