From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43634) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1djr8L-0000l7-9l for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1djr8J-0002yJ-UM for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39495) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1djr8J-0002y8-QB for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1djr8J-0006r2-K4 for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:03 -0400 Subject: [bug#28177] [PATCH 10/12] gnu: Add perl-yaml-libyaml. Resent-Message-ID: From: Christopher Baines Date: Mon, 21 Aug 2017 19:08:30 +0100 Message-Id: <20170821180832.23356-10-mail@cbaines.net> In-Reply-To: <20170821180832.23356-1-mail@cbaines.net> References: <20170821190443.7056f624@cbaines.net> <20170821180832.23356-1-mail@cbaines.net> 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: 28177@debbugs.gnu.org * gnu/packages/perl.scm (perl-yaml-libyaml): New variable. --- gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 31785e4ae..cdda79a54 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -8235,6 +8235,30 @@ neither visible nor modifiable from Perl space).") on the YAML 1.0 specification.") (license (package-license perl)))) +(define-public perl-yaml-libyaml + (package + (name "perl-yaml-libyaml") + (version "0.65") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-" + version + ".tar.gz")) + (sha256 + (base32 + "0izhvz8f29x1f50hhwfgm0iq1lz7apjjvg77lmky949jr07hnwfv")))) + (build-system perl-build-system) + (home-page + "http://search.cpan.org/dist/YAML-LibYAML") + (synopsis + "Perl YAML Serialization using XS and libyaml") + (description + "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the +best YAML support to date.") + (license (package-license perl)))) + (define-public perl-yaml-tiny (package (name "perl-yaml-tiny") -- 2.14.1