guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 8ee9de373555366e1535f95c31c08744390e6bb5 Author: Zheng Junjie <z572@z572.online> AuthorDate: Mon Jul 14 20:58:30 2025 +0800 gnu: adb: Fix build. * gnu/packages/android.scm (adb): Fix build. [native-inputs]: Add linux-libre-headers-5.4 and gcc-11. Change-Id: I76baf1685a09ea0790bfd4b7cd6de0d8634ed09e Signed-off-by: Andreas Enge <andr...@enge.fr> --- gnu/packages/android.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm index 82b4cf23ec..7cb7814965 100644 --- a/gnu/packages/android.scm +++ b/gnu/packages/android.scm @@ -421,6 +421,7 @@ various Android core host applications.") (lambda* (#:key inputs outputs #:allow-other-keys) (install-file "diagnose_usb.h" (string-append (assoc-ref outputs "out") "/include")) #t))))) + (native-inputs (list linux-libre-headers-5.4 gcc-11)) (inputs (list android-libbase android-libcutils android-liblog openssl)) (home-page "https://developer.android.com/studio/command-line/adb.html")