summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-08-31 19:08:01 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-08-31 19:08:01 -0400
commit2f3704155a2a2386280032a080e0ce6297ce23ec (patch)
tree576d2188ca03e9422da4193a810379dd4e0f27c3
parent678a2cdd5192ae038f1c1362a5ad0fef9c4b3a4e (diff)
guix: Use new style input specification.
-rw-r--r--guix.scm13
1 files changed, 2 insertions, 11 deletions
diff --git a/guix.scm b/guix.scm
index 84b56c4..8d57144 100644
--- a/guix.scm
+++ b/guix.scm
@@ -62,17 +62,8 @@
(modify-phases %standard-phases
(add-after 'unpack 'bootstrap
(lambda _ (zero? (system* "sh" "bootstrap")))))))
- (native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("pkg-config" ,pkg-config)
- ("texinfo" ,texinfo)))
- (inputs
- `(("guile" ,guile-3.0-latest)
- ("sdl2" ,sdl2)
- ("sdl2-image" ,sdl2-image)
- ("sdl2-mixer" ,sdl2-mixer)
- ("sdl2-ttf" ,sdl2-ttf)))
+ (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.")