From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53441) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dB1hC-0005bX-OZ for guix-patches@gnu.org; Wed, 17 May 2017 12:21:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dB1h8-0004f5-QI for guix-patches@gnu.org; Wed, 17 May 2017 12:21:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:48415) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dB1h8-0004ey-AD for guix-patches@gnu.org; Wed, 17 May 2017 12:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dB1h8-0000xK-3W for guix-patches@gnu.org; Wed, 17 May 2017 12:21:02 -0400 Subject: bug#26965: mc: Add unzip to inputs Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53041) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dB1gA-0005D5-RR for guix-patches@gnu.org; Wed, 17 May 2017 12:20:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dB1g6-0004Id-Ln for guix-patches@gnu.org; Wed, 17 May 2017 12:20:02 -0400 Received: from 93-95-228-241.1984.is ([93.95.228.241]:48792 helo=sharknado9001.pragmatique.xyz) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dB1g6-0004IX-7C for guix-patches@gnu.org; Wed, 17 May 2017 12:19:58 -0400 Received: by sharknado9001.pragmatique.xyz (OpenSMTPD) with ESMTPSA id bcb37b62 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Wed, 17 May 2017 16:19:43 +0000 (UTC) Date: Wed, 17 May 2017 16:19:50 +0000 From: ng0 Message-ID: <20170517161950.ddffdi6nt2fton3u@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="auvd4qyilvg5ub54" Content-Disposition: inline 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: 26965@debbugs.gnu.org --auvd4qyilvg5ub54 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline One more input for mc. There's much to be added, at some point it makes sense to have an mc-full package instead of an mc fully-bloated-by-default package. --auvd4qyilvg5ub54 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-mc-Add-unzip-to-inputs.patch" Content-Transfer-Encoding: quoted-printable =46rom edddbf5084361305f38f2a34b706bc5d96ae92bc Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Tue, 16 May 2017 22:28:57 +0000 Subject: [PATCH] gnu: mc: Add unzip to inputs. * gnu/packages/mc.scm (mc)[inputs]: Add unzip. --- gnu/packages/mc.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm index 3cdc54215..bae12439f 100644 --- a/gnu/packages/mc.scm +++ b/gnu/packages/mc.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2014 Eric Bavier ;;; Copyright =C2=A9 2016 Efraim Flashner -;;; Copyright =C2=A9 2016 ng0 +;;; Copyright =C2=A9 2016, 2017 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -30,7 +30,8 @@ #:use-module (gnu packages ssh) #:use-module (gnu packages pkg-config) #:use-module (gnu packages check) - #:use-module (gnu packages perl)) + #:use-module (gnu packages perl) + #:use-module (gnu packages zip)) =20 (define-public mc (package @@ -51,7 +52,8 @@ ("ncurses" ,ncurses) ("libssh2" ,libssh2) ("glib" ,glib) - ("check" ,check))) + ("check" ,check) + ("unzip" ,unzip))) (arguments `(#:configure-flags '("--with-screen=3Dncurses" "--enable-aspell") --=20 2.13.0 --auvd4qyilvg5ub54--