diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-10-01 21:16:04 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-10-01 21:16:04 -0400 |
commit | 24e4a031a6edbfd3a8bca673e41c963be39cd0b8 (patch) | |
tree | c1d8cbe13d3f437e680c3856a114050261a93528 | |
parent | c5867856a9a63694462329d73c40dc5ca978a397 (diff) |
Update guix.scm.
-rw-r--r-- | guix.scm | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -29,16 +29,10 @@ ;; ;;; Code: -(use-modules (ice-9 match) - (ice-9 popen) - (ice-9 rdelim) - (srfi srfi-1) - (srfi srfi-26) - (guix git) +(use-modules (guix git) (guix packages) (guix licenses) (guix build-system gnu) - ((guix build utils) #:select (with-directory-excursion)) (gnu packages) (gnu packages autotools) (gnu packages guile) @@ -56,11 +50,11 @@ #:phases (modify-phases %standard-phases (add-after 'unpack 'bootstrap - (lambda _ (zero? (system* "sh" "bootstrap"))))))) + (lambda _ (invoke "sh" "bootstrap")))))) (native-inputs (list autoconf automake pkg-config texinfo)) (inputs (list guile-3.0-latest sdl2 sdl2-image sdl2-mixer sdl2-ttf)) (synopsis "Guile bindings for SDL2") - (description "Guile-sdl2 provides pure Guile Scheme bindings to the -SDL2 C shared library via the foreign function interface.") + (description "Guile-SDL2 provides pure Guile Scheme bindings to the SDL2 C shared +library via the foreign function interface.") (home-page "https://git.dthompson.us/guile-sdl2.git") (license lgpl3+)) |