From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46884) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hKLkS-0000kp-JU for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hKLkR-0003Is-F4 for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49378) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hKLkR-0003IB-5u for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hKLkR-0006Th-3D for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:03 -0400 Subject: [bug#35449] [PATCH 2/7] gnu: Use license: prefix in shellutils.scm. Resent-Message-ID: From: Brendan Tildesley Date: Sat, 27 Apr 2019 21:43:02 +1000 Message-Id: <20190427114307.26796-2-mail@brendan.scot> In-Reply-To: <20190427114307.26796-1-mail@brendan.scot> References: <20190427114307.26796-1-mail@brendan.scot> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35449@debbugs.gnu.org * gnu/packages/shellutils.scm Use license: prefix in all packages. --- gnu/packages/shellutils.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 59a8b744eb..d8d601acfe 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -25,7 +25,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages golang) #:use-module (gnu packages python) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -98,7 +98,7 @@ between various shells or commands.") FreeDesktop.org trash can used by GNOME, KDE, XFCE, and other common desktop environments. It can move files to the trash, and remove or list files that are already there.") - (license gpl2+))) + (license license:gpl2+))) (define-public direnv (package @@ -146,7 +146,7 @@ allows project-specific environment variables without using @file{~/.profile}. Before each prompt, direnv checks for the existence of a @file{.envrc} file in the current and parent directories. This file is then used to alter the environment variables of the current shell.") - (license expat))) + (license license:expat))) (define-public fzy (package @@ -181,7 +181,7 @@ or different parts of the path. fzy is designed to be used both as an editor plugin and on the command line. Rather than clearing the screen, fzy displays its interface directly below the current cursor position, scrolling the screen if necessary.") - (license expat))) + (license license:expat))) (define-public hstr (package @@ -223,4 +223,4 @@ HSTR can also manage your command history (for instance you can remove commands that are obsolete or contain a piece of sensitive information) or bookmark your favourite commands.") (home-page "http://me.mindforger.com/projects/hh.html") - (license asl2.0))) + (license license:asl2.0))) -- 2.21.0