android-file-transfer: use qt6

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