From 254ea1eea9c70620524ec0d3bd238cf0b535321d Mon Sep 17 00:00:00 2001 From: David Thompson Date: Tue, 6 Oct 2015 22:49:45 -0400 Subject: Update Guix package. --- guix.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'guix.scm') diff --git a/guix.scm b/guix.scm index 008796b..695c4b8 100644 --- a/guix.scm +++ b/guix.scm @@ -42,10 +42,21 @@ (package (name "guile-sdl2") (version "0.1") - (source #f) + (source (origin + (method git-fetch) + (uri (git-reference + (url "git://dthompson.us/guile-sdl2.git") + (commit "9ce20c4"))) + (sha256 + (base32 + "067vbbl643cijnc45jd06w5wz7y8b9vfb3mcjrxbynz8vv5sl9kn")))) (build-system gnu-build-system) (arguments - '(#:phases + '(#:configure-flags + (list (string-append "--with-libsdl2-prefix=" + (assoc-ref %build-inputs "sdl2"))) + #:make-flags '("GUILE_AUTO_COMPILE=0") + #:phases (modify-phases %standard-phases (add-after 'unpack 'bootstrap (lambda _ (zero? (system* "sh" "bootstrap"))))))) -- cgit v1.2.3