diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-05 18:44:38 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-06 14:53:18 +0100 |
| commit | bb8f1efc360b606c7eeb8c2a7631037c7e07a3a4 (patch) | |
| tree | f9481fc523dc7effebfe7ae634817460302ef6c3 | |
| parent | 7f638c8ea137086424d98d98e42b09f904f6e203 (diff) | |
gnu: java-brotli: Fix build.
* gnu/packages/compression.scm (java-brotli)[#:phases]: Add
‘drop-android-wrapper’.
| -rw-r--r-- | gnu/packages/compression.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index e1f1d6a87fd..3af60e9658d 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -2434,7 +2434,12 @@ The specification of the Brotli Compressed Data Format is defined in RFC 7932.") #:source-dir "java" ;; Tests are mixed in with java sources, the ant build system ;; doesn't allow that - #:tests? #f)) + #:tests? #f + #:phases (modify-phases %standard-phases + (add-after 'unpack 'drop-android-wrapper + (lambda _ + (delete-file-recursively + "java/org/brotli/wrapper/android")))))) (native-inputs (list java-junit)))) (define-public ucl |
