From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 1/5] gnu: gnucash: Add "license:" prefix. Date: Mon, 6 Jun 2016 15:22:57 +0200 Message-ID: <20160606132301.21077-2-rekado@elephly.net> References: <20160606132301.21077-1-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9uV8-0005ys-Cn for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b9uV2-00059z-Cw for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:30 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24382) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9uV2-00059m-4a for guix-devel@gnu.org; Mon, 06 Jun 2016 09:23:24 -0400 In-Reply-To: <20160606132301.21077-1-rekado@elephly.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/gnucash.scm: Import licenses with "license:" prefix. (gnucash)[license]: Add prefix. --- gnu/packages/gnucash.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 5c0ce4f..c39324c 100644 --- a/gnu/packages/gnucash.scm +++ b/gnu/packages/gnucash.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015 Ricardo Wurmus +;;; Copyright © 2015, 2016 Ricardo Wurmus ;;; Copyright © 2015 Eric Bavier ;;; Copyright © 2016 Efraim Flashner ;;; @@ -19,7 +19,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages gnucash) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -106,4 +106,4 @@ It can be used to track bank accounts, stocks, income and expenses, based on the double-entry accounting practice. It includes support for QIF/OFX/HBCI import and transaction matching. It also automates several tasks, such as financial calculations or scheduled transactions.") - (license gpl3+))) + (license license:gpl3+))) -- 2.8.3