mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
* Remove a time-dependent impurity from mc which was caused by touching all the source files. Depending on whether files were touched in the same second things would either be rebuilt (which would fail) or not.
Maybe this breaks unzip support, not tested. svn path=/nixpkgs/branches/stdenv-updates/; revision=10587
This commit is contained in:
parent
d8688a1eb9
commit
7753a1c5e9
|
@ -8,15 +8,12 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
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;
|
||||
";
|
||||
makeFlags = "UNZIP=unzip";
|
||||
postInstall = ''
|
||||
find $out -iname "*.pl" | xargs shebangfix;
|
||||
'';
|
||||
meta = {
|
||||
description = "File Manager and User Shell for the GNU Project";
|
||||
homepage = http://www.ibiblio.org/mc;
|
||||
description = "File Manager and User Shell for the GNU Project";
|
||||
homepage = http://www.ibiblio.org/mc;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue