me
/
guix
Archived
1
0
Fork 0

gnu: godot: Use system brotli.

* gnu/packages/game-development.scm (godot)[source]: Do not preserve brotli.
[arguments]<#:scons-flags>: Add “builtin_brotli=no”.
[inputs]: Add brotli.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
TakeV 2023-07-27 21:26:37 -07:00 committed by Liliana Marie Prikler
parent ea17bc5b20
commit 4739e6844c
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 2 additions and 4 deletions

View File

@ -2017,10 +2017,6 @@ scripted in a Python-like language.")
"assimp" "assimp"
"astcenc" "astcenc"
"basis_universal" "basis_universal"
;; TODO: Can unbundle once
;; <https://github.com/godotengine/godot/pull/79101>
;; is merged
"brotli"
;; Godot needs ca-certificates.crt, but that is ;; Godot needs ca-certificates.crt, but that is
;; not available in build environment ;; not available in build environment
"certs" "certs"
@ -2067,6 +2063,7 @@ scripted in a Python-like language.")
"use_volk=no" "use_volk=no"
;; Avoid using many of the bundled libs. ;; Avoid using many of the bundled libs.
;; Note: These options can be found in the SConstruct file. ;; Note: These options can be found in the SConstruct file.
"builtin_brotli=no"
"builtin_embree=no" "builtin_embree=no"
"builtin_enet=no" "builtin_enet=no"
"builtin_freetype=no" "builtin_freetype=no"
@ -2193,6 +2190,7 @@ scripted in a Python-like language.")
(list pkg-config)) (list pkg-config))
(inputs (inputs
(list alsa-lib (list alsa-lib
brotli
dbus dbus
embree embree
enet enet