me
/
guix
Archived
1
0
Fork 0

gnu: Add prefix to license imports in (gnu packages avr).

* gnu/packages/avr.scm: Import (guix licenses) with prefix "license:".
master
Ricardo Wurmus 2015-11-06 22:35:33 +01:00
parent e5e2068551
commit 42f8504ccc
1 changed files with 2 additions and 2 deletions

View File

@ -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"))))