mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 23:53:26 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
111 lines
2.6 KiB
Nix
111 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
buildPackages,
|
|
pkg-config,
|
|
glib,
|
|
gpm,
|
|
file,
|
|
e2fsprogs,
|
|
libICE,
|
|
perl,
|
|
zip,
|
|
unzip,
|
|
gettext,
|
|
slang,
|
|
libssh2,
|
|
openssl,
|
|
coreutils,
|
|
autoSignDarwinBinariesHook,
|
|
x11Support ? true,
|
|
libX11,
|
|
|
|
# updater only
|
|
writeScript,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mc";
|
|
version = "4.8.32";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.midnight-commander.org/downloads/${pname}-${version}.tar.xz";
|
|
hash = "sha256-TdyD0e3pryNjs+q5h/VLh89mGTJBEM4tOg5wlE0TWf4=";
|
|
};
|
|
|
|
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) [
|
|
autoSignDarwinBinariesHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
file
|
|
gettext
|
|
glib
|
|
libICE
|
|
libssh2
|
|
openssl
|
|
slang
|
|
zip
|
|
]
|
|
++ lib.optionals x11Support [ libX11 ]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
|
e2fsprogs
|
|
gpm
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
# used for vfs helpers at run time:
|
|
"PERL=${perl}/bin/perl"
|
|
# used for .hlp generation at build time:
|
|
"PERL_FOR_BUILD=${buildPackages.perl}/bin/perl"
|
|
|
|
# configure arguments have a bunch of build-only dependencies.
|
|
# Avoid their retention in final closure.
|
|
"--disable-configure-args"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/filemanager/ext.c \
|
|
--replace /bin/rm ${coreutils}/bin/rm
|
|
'';
|
|
|
|
postFixup = lib.optionalString ((!stdenv.hostPlatform.isDarwin) && x11Support) ''
|
|
# libX11.so is loaded dynamically so autopatch doesn't detect it
|
|
patchelf \
|
|
--add-needed ${libX11}/lib/libX11.so \
|
|
$out/bin/mc
|
|
'';
|
|
|
|
passthru.updateScript = writeScript "update-mc" ''
|
|
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl pcre common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
# Expect the text in format of "Current version is: 4.8.27; ...".
|
|
new_version="$(curl -s https://midnight-commander.org/ | pcregrep -o1 'Current version is: (([0-9]+\.?)+);')"
|
|
update-source-version mc "$new_version"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "File Manager and User Shell for the GNU Project, known as Midnight Commander";
|
|
downloadPage = "https://www.midnight-commander.org/downloads/";
|
|
homepage = "https://www.midnight-commander.org";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ sander ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
mainProgram = "mc";
|
|
};
|
|
}
|