diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-16 12:37:55 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-16 14:29:47 +0100 |
commit | 4ddeb3f8534fa3c36c74b048a52cd5dbb97a6d5e (patch) | |
tree | 1659c8eaa405f11e46fb738ce79c71471377befa | |
parent | 0e2b522bf3734f01614e8eefc11982d891e5b2d5 (diff) |
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
-rw-r--r-- | gnu/packages/android.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 9c71a4ee47..cb699b06dc 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") |