gnu: mc: Add unzip to inputs.

* gnu/packages/mc.scm (mc)[inputs]: Add unzip.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
master
ng0 2017-05-16 22:28:57 +00:00 committed by Marius Bakke
parent c80cd4dfb4
commit 45433bb03d
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 ng0 <ng0@libertad.pw> ;;; Copyright © 2016, 2017 ng0 <ng0@no-reply.pragmatique.xyz>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -30,7 +30,8 @@
#:use-module (gnu packages ssh) #:use-module (gnu packages ssh)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config)
#:use-module (gnu packages check) #:use-module (gnu packages check)
#:use-module (gnu packages perl)) #:use-module (gnu packages perl)
#:use-module (gnu packages zip))
(define-public mc (define-public mc
(package (package
@ -51,7 +52,8 @@
("ncurses" ,ncurses) ("ncurses" ,ncurses)
("libssh2" ,libssh2) ("libssh2" ,libssh2)
("glib" ,glib) ("glib" ,glib)
("check" ,check))) ("check" ,check)
("unzip" ,unzip)))
(arguments (arguments
`(#:configure-flags `(#:configure-flags
'("--with-screen=ncurses" "--enable-aspell") '("--with-screen=ncurses" "--enable-aspell")