about summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-01-21 18:28:29 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-01-21 18:28:29 +0000
commit54626a9b527f31f5e926cc53b9579b071607da62 (patch)
treea21239c3d3aefd7db7a881ff5768205788afa47f /pkgs/applications/file-managers
parentcf7519e5c8def8aaf944993b8c70bdf55435d176 (diff)
downloadnixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar.gz
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar.bz2
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar.lz
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar.xz
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.tar.zst
nixlib-54626a9b527f31f5e926cc53b9579b071607da62.zip
mc: 4.8.28 -> 4.8.29
Changes: http://www.midnight-commander.org/wiki/NEWS-4.8.29
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/mc/default.nix16
1 files changed, 3 insertions, 13 deletions
diff --git a/pkgs/applications/file-managers/mc/default.nix b/pkgs/applications/file-managers/mc/default.nix
index 9204aad535ea..8b54d79622a4 100644
--- a/pkgs/applications/file-managers/mc/default.nix
+++ b/pkgs/applications/file-managers/mc/default.nix
@@ -16,7 +16,6 @@
 , libssh2
 , openssl
 , coreutils
-, autoreconfHook
 , autoSignDarwinBinariesHook
 
 # updater only
@@ -25,23 +24,14 @@
 
 stdenv.mkDerivation rec {
   pname = "mc";
-  version = "4.8.28";
+  version = "4.8.29";
 
   src = fetchurl {
     url = "https://www.midnight-commander.org/downloads/${pname}-${version}.tar.xz";
-    sha256 = "sha256-6ZTZvppxcumsSkrWIQeSH2qjEuZosFbf5bi867r1OAM=";
+    sha256 = "sha256-AdijuU9YGAzKW/FyV7UHjR/W/SeptcDpcOx2dUlUCtQ=";
   };
 
-  patches = [
-    # Add support for PERL_FOR_BUILD to fix cross-compilation:
-    #   https://midnight-commander.org/ticket/4399
-    (fetchurl {
-      url = "https://midnight-commander.org/raw-attachment/ticket/4399/0001-configure.ac-introduce-PERL_FOR_BUILD.patch";
-      hash = "sha256-i4cbg/pner+yPfgmP04DEIvpNDlM9YDca1TNBdhWhwI=";
-    })
-  ];
-
-  nativeBuildInputs = [ pkg-config autoreconfHook unzip ]
+  nativeBuildInputs = [ pkg-config unzip ]
     # The preFixup hook rewrites the binary, which invaliates the code
     # signature. Add the fixup hook to sign the output.
     ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [