android-file-transfer: use qt6

+6 -9
+5 -8
pkgs/tools/filesystems/android-file-transfer/default.nix
··· 1 1 { 2 2 lib, 3 3 stdenv, 4 - mkDerivation, 5 4 fetchFromGitHub, 6 5 cmake, 7 6 fuse3, 8 7 readline, 9 8 pkg-config, 10 - qtbase, 11 - qttools, 12 - wrapQtAppsHook, 9 + qt6, 13 10 }: 14 11 15 - mkDerivation rec { 12 + stdenv.mkDerivation rec { 16 13 pname = "android-file-transfer"; 17 14 version = "4.5"; 18 15 ··· 29 26 cmake 30 27 readline 31 28 pkg-config 32 - wrapQtAppsHook 29 + qt6.wrapQtAppsHook 33 30 ]; 34 31 buildInputs = [ 35 32 fuse3 36 - qtbase 37 - qttools 33 + qt6.qtbase 34 + qt6.qttools 38 35 ]; 39 36 40 37 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
+1 -1
pkgs/top-level/all-packages.nix
··· 16170 16170 16171 16171 ### MISC 16172 16172 16173 - android-file-transfer = libsForQt5.callPackage ../tools/filesystems/android-file-transfer { }; 16173 + android-file-transfer = callPackage ../tools/filesystems/android-file-transfer { }; 16174 16174 16175 16175 antimicrox = libsForQt5.callPackage ../tools/misc/antimicrox { }; 16176 16176