From 4ddeb3f8534fa3c36c74b048a52cd5dbb97a6d5e Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sun, 16 Feb 2025 12:37:55 +0100 Subject: [PATCH] gnu: android-file-transfer: Support wayland. * gnu/packages/android.scm (android-file-transfer)[build-system]: Switch to qt-build-system. [inputs]: Add qtwayland-5. Change-Id: I9319e04bbf74f7945734edfe6f98c3f851abe868 --- gnu/packages/android.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 9c71a4ee475..cb699b06dc3 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -41,6 +41,7 @@ #:use-module (guix build-system go) #:use-module (guix build-system python) #:use-module (guix build-system pyproject) + #:use-module (guix build-system qt) #:use-module (guix build-system trivial) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) @@ -1310,10 +1311,10 @@ Java bytecode, which simplifies the analysis of Android applications.") (sha256 (base32 "1ianph8ivj0fxg1l7llid7gv4pbfb5j23b33j9gan6x7scr13q2h")))) - (build-system cmake-build-system) + (build-system qt-build-system) (arguments (list #:tests? #f)) ;there are no tests - (inputs (list qtbase-5 fuse libxkbcommon)) + (inputs (list qtbase-5 qtwayland-5 fuse libxkbcommon)) (native-inputs (list qttools-5 openssl readline)) (home-page "https://whoozle.github.io/android-file-transfer-linux/") (synopsis "MTP client for Android devices")