From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egD8H-0002hW-R2 for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egD8D-0008IV-MY for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:13 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40233) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1egD8D-0008IC-IY for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:09 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1egD8D-0008T0-DU for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:09 -0500 Subject: [bug#30274] [PATCH 11/24] gnu: Add perl-software-license. Resent-Message-ID: From: Oleg Pykhalov Date: Mon, 29 Jan 2018 20:20:23 +0300 Message-Id: <20180129172036.21133-12-go.wigust@gmail.com> In-Reply-To: <20180129172036.21133-1-go.wigust@gmail.com> References: <20180128184828.32395-21-go.wigust@gmail.com> <20180129172036.21133-1-go.wigust@gmail.com> 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: 30274@debbugs.gnu.org * gnu/packages/license.scm (perl-software-license): New public variable. --- gnu/packages/license.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/license.scm b/gnu/packages/license.scm index 09a922842..774654f48 100644 --- a/gnu/packages/license.scm +++ b/gnu/packages/license.scm @@ -79,3 +79,27 @@ Regexp::Pattern is a convention for organizing reusable regex patterns.") (description "String::Copyright Parses common styles of copyright statements and serializes in normalized format.") (license gpl3+))) + +(define-public perl-software-license + (package + (name "perl-software-license") + (version "0.103013") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/L/LE/LEONT/Software-License-" + version ".tar.gz")) + (sha256 + (base32 + "1wqgh7vdlc966amlrq0b2szz18lnrl9rfh8wlf7v0hqg74vxjh96")))) + (build-system perl-build-system) + (native-inputs + `(("perl-try-tiny" ,perl-try-tiny))) + (propagated-inputs + `(("perl-data-section" ,perl-data-section) + ("perl-text-template" ,perl-text-template))) + (home-page "http://search.cpan.org/dist/Software-License/") + (synopsis "Templated software licenses") + (description "This package provides templated software licenses.") + (license (package-license perl)))) -- 2.15.1