lol

Merge pull request #195016 from wegank/far2l-2.4.1

authored by

Sandro and committed by
GitHub
d709a206 7a271c8b

+5 -8
+5 -8
pkgs/applications/misc/far2l/default.nix
··· 2 2 , xdg-utils, zip, unzip, gzip, bzip2, gnutar, p7zip, xz 3 3 , IOKit, Carbon, Cocoa, AudioToolbox, OpenGL 4 4 , withTTYX ? true, libX11 5 - , withGUI ? true, wxGTK30, wxmac 5 + , withGUI ? true, wxGTK32 6 6 , withUCD ? true, libuchardet 7 7 8 8 # Plugins ··· 12 12 , withPython ? false, python3Packages 13 13 }: 14 14 15 - let 16 - wxWidgets = (if stdenv.isDarwin then wxmac else wxGTK30); 17 - in 18 15 stdenv.mkDerivation rec { 19 16 pname = "far2l"; 20 - version = "2.4.0"; 17 + version = "2.4.1"; 21 18 22 19 src = fetchFromGitHub { 23 20 owner = "elfmz"; 24 21 repo = "far2l"; 25 22 rev = "v_${version}"; 26 - sha256 = "sha256-nfoAElPLQ97lj65MBX4JMEdgTFbkdEbR1BazYZgV/lg="; 23 + sha256 = "sha256-0t1ND6LmDcivfrZ8RaEr1vjeS5JtaeWkoHkl2e7Xr5s="; 27 24 }; 28 25 29 26 patches = [ ./python_prebuild.patch ]; ··· 31 28 nativeBuildInputs = [ cmake ninja pkg-config m4 makeWrapper ]; 32 29 33 30 buildInputs = lib.optional withTTYX libX11 34 - ++ lib.optional withGUI wxWidgets 31 + ++ lib.optional withGUI wxGTK32 35 32 ++ lib.optional withUCD libuchardet 36 33 ++ lib.optionals withColorer [ spdlog xercesc ] 37 34 ++ lib.optionals withMultiArc [ libarchive pcre ] ··· 73 70 meta = with lib; { 74 71 description = "Linux port of FAR Manager v2, a program for managing files and archives in Windows operating systems"; 75 72 homepage = "https://github.com/elfmz/far2l"; 76 - license = licenses.gpl2Plus; # NOTE: might change in far2l repo soon, check next time 73 + license = licenses.gpl2Only; 77 74 maintainers = with maintainers; [ hypersw ]; 78 75 platforms = platforms.unix; 79 76 };