summaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-12-17 08:57:30 -0500
committerDavid Thompson <dthompson2@worcester.edu>2021-12-17 09:05:40 -0500
commit9394b9f1a100cc7ecdf024c0c525e535b0301cd3 (patch)
treec12602d9a981adf4a6abdcbcbe71a2d0c37c3bfd /guix.scm
parentc405b463a00c719e015f30a8a7da4db787736560 (diff)
Remove dependence on SDL2_image and use our own JPEG/PNG loading.
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/guix.scm b/guix.scm
index 295ae85..d079ebd 100644
--- a/guix.scm
+++ b/guix.scm
@@ -108,12 +108,12 @@
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'bootstrap
- (lambda _
- (zero? (system* "sh" "bootstrap")))))))
+ (lambda _
+ (zero? (system* "sh" "bootstrap")))))))
(native-inputs
(list autoconf automake pkg-config texinfo))
(inputs
- (list target-guile sdl2 sdl2-image))
+ (list target-guile sdl2))
(synopsis "Guile bindings for SDL2")
(description "Guile-sdl2 provides pure Guile Scheme bindings to the
SDL2 C shared library via the foreign function interface.")