summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-10-01 21:16:04 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-10-01 21:16:04 -0400
commit24e4a031a6edbfd3a8bca673e41c963be39cd0b8 (patch)
treec1d8cbe13d3f437e680c3856a114050261a93528
parentc5867856a9a63694462329d73c40dc5ca978a397 (diff)
Update guix.scm.
-rw-r--r--guix.scm14
1 files changed, 4 insertions, 10 deletions
diff --git a/guix.scm b/guix.scm
index 963ac15..da5f30f 100644
--- a/guix.scm
+++ b/guix.scm
@@ -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+))