nixpkgs/pkgs/applications/misc/far2l/default.nix
Ihar Hrachyshka dd0f03a56c treewide: remove usage of deprecated apple_sdk framework stubs
They are not doing anything right now. This is in preparation for their
complete removal from the tree.

Note: several changes that affect the derivation inputs (e.g. removal of
references to stub paths in build instructions) were left out. They will
be cleaned up the next iteration and will require special care.

Note: this PR is a result of a mix of ugly regex (not AST) based
automation and some manual labor. For reference, the regex automation
part was hacked in: https://github.com/booxter/nix-clean-apple_sdk

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
2025-04-19 20:28:20 -04:00

137 lines
2.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
makeWrapper,
cmake,
ninja,
pkg-config,
m4,
perl,
bash,
xdg-utils,
zip,
unzip,
gzip,
bzip2,
gnutar,
p7zip,
xz,
withTTYX ? true,
libX11,
withGUI ? true,
wxGTK32,
withUCD ? true,
libuchardet,
# Plugins
withColorer ? true,
spdlog,
xercesc,
withMultiArc ? true,
libarchive,
pcre,
withNetRocks ? true,
openssl,
libssh,
samba,
libnfs,
neon,
withPython ? false,
python3Packages,
}:
stdenv.mkDerivation rec {
pname = "far2l";
version = "2.6.3";
src = fetchFromGitHub {
owner = "elfmz";
repo = "far2l";
rev = "v_${version}";
sha256 = "sha256-iWZQpLe+shdepCVOHZDp7QEQoqelbHGRJh09KWb6aD0=";
};
nativeBuildInputs = [
cmake
ninja
pkg-config
m4
perl
makeWrapper
];
buildInputs =
lib.optional withTTYX libX11
++ lib.optional withGUI wxGTK32
++ lib.optional withUCD libuchardet
++ lib.optionals withColorer [
spdlog
xercesc
]
++ lib.optionals withMultiArc [
libarchive
pcre
]
++ lib.optionals withNetRocks [
openssl
libssh
libnfs
neon
]
++ lib.optional (withNetRocks && !stdenv.hostPlatform.isDarwin) samba # broken on darwin
++ lib.optionals withPython (
with python3Packages;
[
python
cffi
debugpy
pcpp
]
);
postPatch = ''
patchShebangs python/src/prebuild.sh
patchShebangs far2l/bootstrap/view.sh
'';
cmakeFlags =
[
(lib.cmakeBool "TTYX" withTTYX)
(lib.cmakeBool "USEWX" withGUI)
(lib.cmakeBool "USEUCD" withUCD)
(lib.cmakeBool "COLORER" withColorer)
(lib.cmakeBool "MULTIARC" withMultiArc)
(lib.cmakeBool "NETROCKS" withNetRocks)
(lib.cmakeBool "PYTHON" withPython)
]
++ lib.optionals withPython [
(lib.cmakeFeature "VIRTUAL_PYTHON" "python")
(lib.cmakeFeature "VIRTUAL_PYTHON_VERSION" "python")
];
runtimeDeps = [
unzip
zip
p7zip
xz
gzip
bzip2
gnutar
];
postInstall = ''
wrapProgram $out/bin/far2l \
--argv0 $out/bin/far2l \
--prefix PATH : ${lib.makeBinPath runtimeDeps} \
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}
'';
meta = with lib; {
description = "Linux port of FAR Manager v2, a program for managing files and archives in Windows operating systems";
homepage = "https://github.com/elfmz/far2l";
license = licenses.gpl2Only;
maintainers = with maintainers; [ hypersw ];
platforms = platforms.unix;
};
}