Skip to content
Snippets Groups Projects
Unverified Commit 20ccaecf authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

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

* gnu/packages/lsh.scm: Remove #:prefix for (gnu packages compression).
Add #:prefix for (guix licenses).
parent 4ff76a0a
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages lsh) (define-module (gnu packages lsh)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
...@@ -25,7 +25,7 @@ (define-module (gnu packages lsh) ...@@ -25,7 +25,7 @@ (define-module (gnu packages lsh)
#:use-module (gnu packages m4) #:use-module (gnu packages m4)
#:use-module (gnu packages linux) #:use-module (gnu packages linux)
#:use-module (gnu packages nettle) #: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 multiprecision)
#:use-module (gnu packages readline) #:use-module (gnu packages readline)
#:use-module (gnu packages gperf) #:use-module (gnu packages gperf)
...@@ -55,7 +55,7 @@ (define-public liboop ...@@ -55,7 +55,7 @@ (define-public liboop
for file and network I/O, timers and signals. Since processes use these 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 mechanisms for almost all external communication, liboop can be used as the
basis for almost any application.") basis for almost any application.")
(license lgpl2.1+))) (license license:lgpl2.1+)))
(define-public lsh (define-public lsh
(package (package
...@@ -100,7 +100,7 @@ (define-public lsh ...@@ -100,7 +100,7 @@ (define-public lsh
("readline" ,readline-6.2) ("readline" ,readline-6.2)
("liboop" ,liboop) ("liboop" ,liboop)
("zlib" ,guix:zlib) ("zlib" ,zlib)
("gmp" ,gmp) ("gmp" ,gmp)
;; The server (lshd) invokes xauth when X11 forwarding is requested. ;; The server (lshd) invokes xauth when X11 forwarding is requested.
...@@ -156,4 +156,4 @@ (define-public lsh ...@@ -156,4 +156,4 @@ (define-public lsh
providing shell access to the server system from the client. It provides 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 both the server daemon and the client application, as well as tools for
manipulating key files.") manipulating key files.")
(license gpl2+))) (license license:gpl2+)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment