From unknown Tue Jun 17 22:02:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#28061] [PATCH] gnu: moreutils: Add more inputs to moreutils. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 12 Aug 2017 11:44:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 28061 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 28061@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.150253823722245 (code B ref -1); Sat, 12 Aug 2017 11:44:02 +0000 Received: (at submit) by debbugs.gnu.org; 12 Aug 2017 11:43:57 +0000 Received: from localhost ([127.0.0.1]:56354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgUph-0005mj-BQ for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42518) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgUpf-0005md-L6 for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgUpZ-0004Uw-AZ for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:50 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:37947) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dgUpZ-0004Ur-7K for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgUpX-0001ie-S5 for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgUpT-0004SC-UP for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:47 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:38442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgUpT-0004Rr-O8 for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:43 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 486C813D1DF; Sat, 12 Aug 2017 12:43:40 +0100 (BST) Received: from localhost (17.71.125.91.dyn.plus.net [91.125.71.17]) by mira.cbaines.net (Postfix) with ESMTPSA id 233D713D1DA for ; Sat, 12 Aug 2017 12:43:40 +0100 (BST) Received: from lesath.lan (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id dc6f9028 for ; Sat, 12 Aug 2017 11:43:39 +0000 (UTC) From: Christopher Baines Date: Sat, 12 Aug 2017 12:43:39 +0100 Message-Id: <20170812114339.25075-1-mail@cbaines.net> X-Mailer: git-send-email 2.13.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) ts requires the Time::Duration and Date::Parse perl modules for the -r option. * gnu/packages/moreutils.scm (moreutils)[inputs]: Add perl-timedate and perl-time-duration. [arguments]: Wrap ts with PERL5LIB. --- gnu/packages/moreutils.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm index 03ffa8f99..bb6228af7 100644 --- a/gnu/packages/moreutils.scm +++ b/gnu/packages/moreutils.scm @@ -52,10 +52,18 @@ ("libxml2" ,libxml2) ("libxslt" ,libxslt))) (inputs - `(("perl" ,perl))) + `(("perl" ,perl) + ("perl-timedate" ,perl-timedate) + ("perl-time-duration" ,perl-time-duration))) (arguments `(#:phases (modify-phases %standard-phases + (add-after 'install 'wrap-program + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out"))) + (wrap-program + (string-append out "/bin/ts") + `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))))) (delete 'configure)) ; no configure script #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) -- 2.13.1 From unknown Tue Jun 17 22:02:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#28061] [PATCH] gnu: moreutils: Add more inputs to moreutils. Resent-From: Marius Bakke Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 12 Aug 2017 12:19:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 28061 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Christopher Baines , 28061@debbugs.gnu.org Received: via spool by 28061-submit@debbugs.gnu.org id=B28061.150254031923321 (code B ref 28061); Sat, 12 Aug 2017 12:19:01 +0000 Received: (at 28061) by debbugs.gnu.org; 12 Aug 2017 12:18:39 +0000 Received: from localhost ([127.0.0.1]:56382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgVNH-000645-6J for submit@debbugs.gnu.org; Sat, 12 Aug 2017 08:18:39 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:51813) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgVNF-00063z-4L for 28061@debbugs.gnu.org; Sat, 12 Aug 2017 08:18:37 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 15AD920994; Sat, 12 Aug 2017 08:18:37 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute5.internal (MEProxy); Sat, 12 Aug 2017 08:18:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=0ijIxQqa0Jnjzs9M2BneISKyZN2zt19G2W+ZX6g3n xs=; b=Ammw1zw5QEKBOVAPaMOONh9ykmp3h6565B0KXclF08E7z2jWdREjoNN8u zLcpnxN556EGyijKxRIHY2JOgw2SdsUEQqCYybPR3Liy+7p5QHmnAzaUJjTGyYOA 5E73pZ+WuLhy/y8eTDCci73QeI5JMvP5tNtF2N6T11Eopi0h/HpsYmn6y50jT7xH HxDtxizN5v0i47Ie77PWUk9XLr9rsO3A33GRbqrmzfakIf5Xw4q520w+Ir2zotd9 a6zQbCoBqqoqT+RS9fw9P/3Ffp4vui7FlQrGK2kEJdZoF8HZs0XuEePipZ9yLgbt nhr1KI3+eBQAtJZZRUf9v8JJS/i0g== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=0ijIxQqa0Jnjzs9M2B neISKyZN2zt19G2W+ZX6g3nxs=; b=CE7BPWSEyfVJcxVGYHH71ErI9V6DAabtAC pRMc9ZH0eN6R/SHdz63BTBmLEGMsYNYV4M9r5nHPlXEMojMswF+wEIfa6FjOAgtH 6AHQonRPMF8RxTuy3YWvO7PMyntsUNtfVxUD4gTF2a9OB6VPphreCRO5fwfjv9Tc UoY6oJaWOTIgesInxlWQyicwfAbJLfoAxwrV2olfUU4XtFKodSpXz5P3vA7X2ZHL jCmmspvOfs0i8cOJIfGuzzp5LNJ7ujUHSQ6P57ZSft1OKDWLmL4NNhrW6kTpWf/Q cTcNWMWlbQne9/F0ACMX92aw8lUrOyoDHabXurepRTExMkJjdxCA== X-ME-Sender: X-Sasl-enc: XwzVo6PI+FmtVez0gsM6DnsJ6MABye7Q3j3Uaf0ws9Ed 1502540316 Received: from localhost (unknown [188.113.81.93]) by mail.messagingengine.com (Postfix) with ESMTPA id 9E40F24372; Sat, 12 Aug 2017 08:18:36 -0400 (EDT) From: Marius Bakke In-Reply-To: <20170812114339.25075-1-mail@cbaines.net> References: <20170812114339.25075-1-mail@cbaines.net> User-Agent: Notmuch/0.25 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) Date: Sat, 12 Aug 2017 14:18:26 +0200 Message-ID: <87k2292d4d.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --=-=-= Content-Type: text/plain Christopher Baines writes: > ts requires the Time::Duration and Date::Parse perl modules for the -r option. > > * gnu/packages/moreutils.scm (moreutils)[inputs]: Add perl-timedate and > perl-time-duration. > [arguments]: Wrap ts with PERL5LIB. LGTM. Hopefully we can get #27003 et.al in with the next core-updates cycle so the wrapping is done automatically. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlmO8hIACgkQoqBt8qM6 VPqoRQgAwsUjStGHqUnDoDrcCLrCCpzze2SsKYWc4KXgg+fRvdpAHxkx47Yb7vt5 1MbR/ZxTWykqxftaQMX+YZksKdE+pilIVX2KbIcCnYjdHeIMjRmnXADrHiByk585 QVwqZnlDlKVfylg6L/Vk7++MdRDfS+tPqaPuNbsSNaevqjYYeJ1JGZSZpHjx6t3u o0lS7E5J48m9/gq/crATJe1nFgiWkIeiFn18785nxFZSRi4lYgveLCEvafX7jKkQ aUBmhbxvDJ0vrMK5MhfB8V8m9AqfvVWqn3C4u9OL9JcAazzLUPLT+IxtV9OCLbDd fAx2T2ajCZmYOpX7Yi9RaLRYAMIDnQ== =taGl -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 22:02:12 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Christopher Baines Subject: bug#28061: closed (Re: [bug#28061] [PATCH] gnu: moreutils: Add more inputs to moreutils.) Message-ID: References: <20170812221127.6c8eb33f@cbaines.net> <20170812114339.25075-1-mail@cbaines.net> X-Gnu-PR-Message: they-closed 28061 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 28061@debbugs.gnu.org Date: Sat, 12 Aug 2017 21:12:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1502572322-26637-1" This is a multi-part message in MIME format... ------------=_1502572322-26637-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #28061: [PATCH] gnu: moreutils: Add more inputs to moreutils. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 28061@debbugs.gnu.org. --=20 28061: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D28061 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1502572322-26637-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 28061-done) by debbugs.gnu.org; 12 Aug 2017 21:11:30 +0000 Received: from localhost ([127.0.0.1]:58262 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgdgw-0006vJ-Eq for submit@debbugs.gnu.org; Sat, 12 Aug 2017 17:11:30 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:52432 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgdgu-0006vD-TI for 28061-done@debbugs.gnu.org; Sat, 12 Aug 2017 17:11:29 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 8EAD913D1E0; Sat, 12 Aug 2017 22:11:28 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (17.71.125.91.dyn.plus.net [91.125.71.17]) by mira.cbaines.net (Postfix) with ESMTPSA id 0B94E13D1E1; Sat, 12 Aug 2017 22:11:28 +0100 (BST) Date: Sat, 12 Aug 2017 22:11:27 +0100 From: Christopher Baines To: Marius Bakke Subject: Re: [bug#28061] [PATCH] gnu: moreutils: Add more inputs to moreutils. Message-ID: <20170812221127.6c8eb33f@cbaines.net> In-Reply-To: <87k2292d4d.fsf@fastmail.com> References: <20170812114339.25075-1-mail@cbaines.net> <87k2292d4d.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/pCkm8dCNqxF5zsmLYtIAkDh"; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 28061-done Cc: 28061-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) --Sig_/pCkm8dCNqxF5zsmLYtIAkDh Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 12 Aug 2017 14:18:26 +0200 Marius Bakke wrote: > Christopher Baines writes: >=20 > > ts requires the Time::Duration and Date::Parse perl modules for the > > -r option. > > > > * gnu/packages/moreutils.scm (moreutils)[inputs]: Add perl-timedate > > and perl-time-duration. > > [arguments]: Wrap ts with PERL5LIB. =20 >=20 > LGTM. Hopefully we can get #27003 et.al in with the next core-updates > cycle so the wrapping is done automatically. Thanks for your review Marius :) I've now pushed this. --Sig_/pCkm8dCNqxF5zsmLYtIAkDh Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlmPbv9fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9XcCug//XcNuAs8MIzloV4It5TbxXhu1tz8LifEOzfycrcvYwotliQFgFNF3Ibxo uO0qP8RIpyAZ04uQflNwuuIQAL2cS3zsq1cJPVzz72hZKg9HsjHdDvyWO+wjIEuH vILyUDkacnbM1x/WFyr5FMm80f1dBgXlrLzu8a1rVJmrC4/LrE2mmuo7tAvrGW3a t57CIeV78orBOqh01PPT3QDwdfrh/I60rYqeIO+tbEwNCM8PItww4UKxnJ1qNx6R tTdmiDRx0M82OcZbHIw0fm7DTdFApFs0VFPTpYf5xD3oBuyCml3v60Y2P//5JBE6 15C49DFmlV8bBTgDeKDsMoNBwvaro9YnHMYuGygm3OyKDLAcCCNAQ5XR2Y37Ajdz 01PqIaaOuCMhjoBXb8GsFuDM/UEahej6A/syfkiap6yvdVZoFDCXzlEhxVR8gQnL 46gkCi/iLZO0Dv+4vvX3tmhOC6b0KEZPGRDN5lwYgdL/mChqyGpFW1Z4nCENp77z pWWpmei9a+FIx4i7zdBT9HdF7OI8Tmk69qlwUewwNz+anHW7j4xoBkxStFnpMpgD UwX/OyscPhR71IDi/ch3ftRv5j+92f/Mi5lvyuuxQHi9M+RECL7tf+mZQN14eanG KB6Vw18xrfTfScs6EgU3CI0p7CA8bGJDk8/Z9yLZTKkvXFEi6FQ= =p3g/ -----END PGP SIGNATURE----- --Sig_/pCkm8dCNqxF5zsmLYtIAkDh-- ------------=_1502572322-26637-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 12 Aug 2017 11:43:57 +0000 Received: from localhost ([127.0.0.1]:56354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgUph-0005mj-BQ for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42518) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dgUpf-0005md-L6 for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgUpZ-0004Uw-AZ for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:50 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:37947) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dgUpZ-0004Ur-7K for submit@debbugs.gnu.org; Sat, 12 Aug 2017 07:43:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgUpX-0001ie-S5 for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dgUpT-0004SC-UP for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:47 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:38442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dgUpT-0004Rr-O8 for guix-patches@gnu.org; Sat, 12 Aug 2017 07:43:43 -0400 Received: by mira.cbaines.net (Postfix, from userid 113) id 486C813D1DF; Sat, 12 Aug 2017 12:43:40 +0100 (BST) Received: from localhost (17.71.125.91.dyn.plus.net [91.125.71.17]) by mira.cbaines.net (Postfix) with ESMTPSA id 233D713D1DA for ; Sat, 12 Aug 2017 12:43:40 +0100 (BST) Received: from lesath.lan (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id dc6f9028 for ; Sat, 12 Aug 2017 11:43:39 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] gnu: moreutils: Add more inputs to moreutils. Date: Sat, 12 Aug 2017 12:43:39 +0100 Message-Id: <20170812114339.25075-1-mail@cbaines.net> X-Mailer: git-send-email 2.13.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) ts requires the Time::Duration and Date::Parse perl modules for the -r option. * gnu/packages/moreutils.scm (moreutils)[inputs]: Add perl-timedate and perl-time-duration. [arguments]: Wrap ts with PERL5LIB. --- gnu/packages/moreutils.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm index 03ffa8f99..bb6228af7 100644 --- a/gnu/packages/moreutils.scm +++ b/gnu/packages/moreutils.scm @@ -52,10 +52,18 @@ ("libxml2" ,libxml2) ("libxslt" ,libxslt))) (inputs - `(("perl" ,perl))) + `(("perl" ,perl) + ("perl-timedate" ,perl-timedate) + ("perl-time-duration" ,perl-time-duration))) (arguments `(#:phases (modify-phases %standard-phases + (add-after 'install 'wrap-program + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out"))) + (wrap-program + (string-append out "/bin/ts") + `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))))) (delete 'configure)) ; no configure script #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) -- 2.13.1 ------------=_1502572322-26637-1--