guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Avoid #:prefix when importing (gnu packages …).


From: Ludovic Courtès
Subject: 01/01: gnu: Avoid #:prefix when importing (gnu packages …).
Date: Thu, 16 Jun 2016 11:09:43 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 20ccaecf7094f2ddd9efba24c8a87de1e30edab1
Author: Ludovic Courtès <address@hidden>
Date:   Thu Jun 16 13:08:57 2016 +0200

    gnu: Avoid #:prefix when importing (gnu packages …).
    
    * gnu/packages/lsh.scm: Remove #:prefix for (gnu packages compression).
    Add #:prefix for (guix licenses).
---
 gnu/packages/lsh.scm |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/lsh.scm b/gnu/packages/lsh.scm
index bb94136..2ea1591 100644
--- a/gnu/packages/lsh.scm
+++ b/gnu/packages/lsh.scm
@@ -17,7 +17,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages lsh)
-  #:use-module (guix licenses)
+  #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
@@ -25,7 +25,7 @@
   #:use-module (gnu packages m4)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages nettle)
-  #:use-module ((gnu packages compression) #:prefix guix:)
+  #:use-module (gnu packages compression)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages gperf)
@@ -55,7 +55,7 @@ replaces the \"select() loop\" and allows the registration of 
event handlers
 for file and network I/O, timers and signals.  Since processes use these
 mechanisms for almost all external communication, liboop can be used as the
 basis for almost any application.")
-    (license lgpl2.1+)))
+    (license license:lgpl2.1+)))
 
 (define-public lsh
   (package
@@ -100,7 +100,7 @@ basis for almost any application.")
        ("readline" ,readline-6.2)
 
        ("liboop" ,liboop)
-       ("zlib" ,guix:zlib)
+       ("zlib" ,zlib)
        ("gmp" ,gmp)
 
        ;; The server (lshd) invokes xauth when X11 forwarding is requested.
@@ -156,4 +156,4 @@ used to create a secure line of communication between two 
computers,
 providing shell access to the server system from the client.  It provides
 both the server daemon and the client application, as well as tools for
 manipulating key files.")
-    (license gpl2+)))
+    (license license:gpl2+)))



reply via email to

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