From 2f3704155a2a2386280032a080e0ce6297ce23ec Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 31 Aug 2022 19:08:01 -0400 Subject: guix: Use new style input specification. --- guix.scm | 13 ++----------- 1 file 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.") -- cgit v1.2.3