Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

guix: only include python-minimal in android build env #9647

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contrib/guix/manifest.scm
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ chain for " target " development."))

;; Scripting
perl ; required to build openssl in depends
python-minimal ; required to build monero (cmake/CheckTrezor.cmake) and in android_ndk

;; Git
git-minimal ; used to create the release source archive
Expand All @@ -303,7 +302,8 @@ chain for " target " development."))
((string-contains target "android")
(list
gcc-toolchain-12
(list gcc-toolchain-12 "static")))
(list gcc-toolchain-12 "static")
python-minimal)) ; required for the android_ndk
((string-contains target "darwin")
(list
gcc-toolchain-10
Expand Down
Loading