guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Import (guix licenses) with #:prefix.


From: Andreas Enge
Subject: 02/02: gnu: Import (guix licenses) with #:prefix.
Date: Fri, 15 Jul 2016 12:32:09 +0000 (UTC)

andreas pushed a commit to branch master
in repository guix.

commit 7fb18f578aa06be524f7b06ba36aab18b1a82cb8
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Jul 14 17:07:25 2016 +0200

    gnu: Import (guix licenses) with #:prefix.
    
    * gnu/packages/crypto.scm: Add 'license:' #:prefix for (guix licenses).
    
    Signed-off-by: Andreas Enge <address@hidden>
---
 gnu/packages/crypto.scm |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index f167f33..041dc20 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -29,7 +29,7 @@
   #:use-module (gnu packages readline)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages tls)
-  #:use-module (guix licenses)
+  #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu))
@@ -54,7 +54,7 @@
     (description
      "Sodium is a new easy-to-use high-speed software library for network
 communication, encryption, decryption, signatures, etc.")
-    (license isc)
+    (license license:isc)
     (home-page "http://libsodium.org";)))
 
 (define-public signify
@@ -91,10 +91,11 @@ OpenBSD tool of the same name.")
     (home-page "https://github.com/aperezdc/signify";)
     ;; This package includes third-party code that was originally released 
under
     ;; various non-copyleft licenses. See the source files for clarification.
-    (license (list bsd-3 bsd-4 expat isc public-domain
-                   (non-copyleft "file://base64.c"
-                                 "See base64.c in the distribution for
-                                 the license from IBM.")))))
+    (license (list license:bsd-3 license:bsd-4 license:expat license:isc
+                   license:public-domain (license:non-copyleft
+                                          "file://base64.c"
+                                          "See base64.c in the distribution for
+                                           the license from IBM.")))))
 
 
 (define-public opendht
@@ -146,4 +147,4 @@ OpenBSD tool of the same name.")
     (description "OpenDHT is a Distributed Hash Table (DHT) library.  It may
 be used to manage peer-to-peer network connections as needed for real time
 communication.")
-    (license gpl3)))
+    (license license:gpl3)))



reply via email to

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