Don't know wether you want to build perl and zip because of mc.. But one of

mc's features is beeing able to unpack on the fly. You can do that now (.zip)

svn path=/nixpkgs/trunk/; revision=10486
This commit is contained in:
Marc Weber 2008-02-03 23:33:54 +00:00
parent 7468189bd3
commit 9a9a078ccf
2 changed files with 9 additions and 2 deletions

View file

@ -6,8 +6,15 @@ stdenv.mkDerivation rec {
url = "http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/${name}.tar.gz";
sha256 = "0zly25mwdn84s0wqx9mzyqi177mm828716nv1n6a4a5cm8yv0sh8";
};
buildInputs = [pkgconfig glib ncurses libX11];
buildInputs = [pkgconfig glib ncurses libX11 shebangfix perl zip];
configureFlags = "--with-screen=ncurses";
# small hacks to support zip
postUnpack = "
sed -i 's=/usr/bin/==g' `find -type f`
";
postInstall = "
find \$out -iname \"*.pl\" | xargs shebangfix;
";
meta = {
description = "File Manager and User Shell for the GNU Project";
homepage = http://www.ibiblio.org/mc;

View file

@ -620,7 +620,7 @@ rec {
};
mc = import ../tools/misc/mc {
inherit fetchurl stdenv pkgconfig ncurses;
inherit fetchurl stdenv pkgconfig ncurses shebangfix perl zip;
inherit (gtkLibs) glib;
inherit (xlibs) libX11;
};