2020-01-23 09:08:35 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, glib
|
|
|
|
, gpm
|
|
|
|
, file
|
|
|
|
, e2fsprogs
|
|
|
|
, libX11
|
|
|
|
, libICE
|
|
|
|
, perl
|
|
|
|
, zip
|
|
|
|
, unzip
|
|
|
|
, gettext
|
|
|
|
, slang
|
|
|
|
, libssh2
|
|
|
|
, openssl
|
|
|
|
, coreutils
|
|
|
|
}:
|
2008-01-23 09:58:07 +00:00
|
|
|
|
2008-01-28 19:49:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mc";
|
2020-01-21 15:13:53 +00:00
|
|
|
version = "4.8.24";
|
2017-05-16 23:15:07 +00:00
|
|
|
|
2008-01-23 09:58:07 +00:00
|
|
|
src = fetchurl {
|
2020-01-21 15:13:53 +00:00
|
|
|
url = "https://www.midnight-commander.org/downloads/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0ikd2yql44p7nagmb08dmjqdwadclnvgr7ri9pmzc2s5f301r7w5";
|
2008-01-23 09:58:07 +00:00
|
|
|
};
|
2017-05-16 23:15:07 +00:00
|
|
|
|
2020-01-21 15:13:53 +00:00
|
|
|
preConfigure = ''
|
|
|
|
for f in \
|
|
|
|
./configure \
|
|
|
|
./config/ltmain.sh \
|
|
|
|
./m4/libtool.m4 \
|
|
|
|
; do
|
|
|
|
substituteInPlace $f --replace /usr/bin/file ${file}/bin/file
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-05-10 05:25:48 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2020-01-23 09:08:35 +00:00
|
|
|
file
|
|
|
|
gettext
|
|
|
|
glib
|
|
|
|
libICE
|
|
|
|
libX11
|
|
|
|
libssh2
|
|
|
|
openssl
|
|
|
|
perl
|
|
|
|
slang
|
|
|
|
unzip
|
|
|
|
zip
|
2018-05-10 05:25:48 +00:00
|
|
|
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ e2fsprogs gpm ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-08-30 08:38:51 +00:00
|
|
|
|
|
|
|
configureFlags = [ "--enable-vfs-smb" ];
|
2009-09-16 17:08:33 +00:00
|
|
|
|
2020-01-23 09:08:35 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/filemanager/ext.c \
|
|
|
|
--replace /bin/rm ${coreutils}/bin/rm
|
|
|
|
'';
|
|
|
|
|
2017-05-16 23:15:07 +00:00
|
|
|
postFixup = ''
|
|
|
|
# remove unwanted build-dependency references
|
|
|
|
sed -i -e "s!PKG_CONFIG_PATH=''${PKG_CONFIG_PATH}!PKG_CONFIG_PATH=$(echo "$PKG_CONFIG_PATH" | sed -e 's/./0/g')!" $out/bin/mc
|
|
|
|
'';
|
|
|
|
|
2020-01-23 09:08:35 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-02-05 09:34:39 +00:00
|
|
|
description = "File Manager and User Shell for the GNU Project";
|
2020-01-21 15:13:53 +00:00
|
|
|
downloadPage = "https://www.midnight-commander.org/downloads/";
|
|
|
|
homepage = https://www.midnight-commander.org;
|
2020-01-23 09:08:35 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2014-04-03 07:30:47 +00:00
|
|
|
repositories.git = git://github.com/MidnightCommander/mc.git;
|
2016-10-04 08:04:33 +00:00
|
|
|
updateWalker = true;
|
2008-01-28 19:49:59 +00:00
|
|
|
};
|
2008-01-23 09:58:07 +00:00
|
|
|
}
|