diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-12-17 08:57:30 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-12-17 09:05:40 -0500 |
commit | 9394b9f1a100cc7ecdf024c0c525e535b0301cd3 (patch) | |
tree | c12602d9a981adf4a6abdcbcbe71a2d0c37c3bfd /guix.scm | |
parent | c405b463a00c719e015f30a8a7da4db787736560 (diff) |
Remove dependence on SDL2_image and use our own JPEG/PNG loading.
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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.") |