From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 12/22] gnu: Add perl-env-path. Date: Wed, 27 Jul 2016 22:54:13 +1000 Message-ID: References: <20160727125423.7768-1-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSOMq-00005p-IV for guix-devel@gnu.org; Wed, 27 Jul 2016 08:55:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSOMo-0004X1-KY for guix-devel@gnu.org; Wed, 27 Jul 2016 08:55:19 -0400 Received: from mail-pa0-x244.google.com ([2607:f8b0:400e:c03::244]:36675) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSOMo-0004Wv-Df for guix-devel@gnu.org; Wed, 27 Jul 2016 08:55:18 -0400 Received: by mail-pa0-x244.google.com with SMTP id ez1so1745703pab.3 for ; Wed, 27 Jul 2016 05:55:18 -0700 (PDT) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id o80sm9177941pfa.67.2016.07.27.05.55.14 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 27 Jul 2016 05:55:16 -0700 (PDT) In-Reply-To: <20160727125423.7768-1-donttrustben@gmail.com> In-Reply-To: References: 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/perl.scm (perl-env-path): New variable. --- gnu/packages/perl.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 590ddf4..cbd3ef8 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2008,6 +2008,29 @@ SHA-1 message digest algorithm for use by Perl programs.") modules separately and deal with them after the module is done installing.") (license (package-license perl)))) +(define-public perl-env-path + (package + (name "perl-env-path") + (version "0.19") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DS/DSB/Env-Path-" + version + ".tar.gz")) + (sha256 + (base32 + "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Env-Path") + (synopsis "Advanced operations on path variables") + (description "@code{Env::Path} presents an object-oriented interface to +path variables, defined as that subclass of environment variables which name +an ordered list of filesystem elements separated by a platform-standard +separator.") + (license (package-license perl)))) + (define-public perl-error (package (name "perl-error") -- 2.9.1