From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46901) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hKLkT-0000ks-8o for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hKLkS-0003JJ-7H for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49381) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hKLkS-0003JE-3j for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hKLkS-0006U1-0X for guix-patches@gnu.org; Sat, 27 Apr 2019 07:44:04 -0400 Subject: [bug#35449] [PATCH 5/7] gnu: Use license: prefix in tmux.scm. Resent-Message-ID: From: Brendan Tildesley Date: Sat, 27 Apr 2019 21:43:05 +1000 Message-Id: <20190427114307.26796-5-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/tmux.scm Use license: prefix in tmux.scm. --- gnu/packages/tmux.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 91d0af6313..191e606cf6 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -23,7 +23,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages tmux) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -58,7 +58,7 @@ windows), each running a separate program, to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached.") - (license isc))) + (license license:isc))) (define-public tmux-themepack (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") @@ -136,7 +136,7 @@ continue running in the background, then later reattached.") @code{layout} files, which are simple shell scripts where you use the tmux command and helper commands provided by tmuxifier to manage Tmux sessions and windows.") - (license expat))) + (license license:expat))) (define-public tmux-xpanes (package @@ -183,4 +183,4 @@ following features: @item Display pane title on each pane. @item Generate command lines from standard input (Pipe mode). @end itemize") - (license expat))) + (license license:expat))) -- 2.21.0