summaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2018-07-10 12:19:43 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2018-07-11 14:36:12 -0400
commitfaa92ac6137e40c6e3c7d18f45798c96fb5113f0 (patch)
tree47bbddf9ed701ac598f80f5d1d78819ec227b455 /guix.scm
parent0542d9283d6c9c1fccbc8e1dc7cae3ba6c7bbe9b (diff)
guix: Update guile-sdl2 commit.
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm14
1 files changed, 4 insertions, 10 deletions
diff --git a/guix.scm b/guix.scm
index 3448264..4707f6e 100644
--- a/guix.scm
+++ b/guix.scm
@@ -65,10 +65,10 @@
(package-with-guile p guile-2.2.4))
(define guile-sdl2
- (let ((commit "3b814d7eb0b60c691803aa8681bcbd222acac36d"))
+ (let ((commit "296ea4423d94809201d6f98f574536bd98de46da"))
(package
(name "guile-sdl2")
- (version "0.2.0-1.")
+ (version (string-append "0.2.0-1." (string-take commit 7)))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -76,7 +76,7 @@
(commit commit)))
(sha256
(base32
- "1rc8nggkqgjdnygsg1wk49j44ri3rq3znwdr6dwzrhjbnfixlbqh"))))
+ "071bg1d6gjrrxwv0hp3a59dhdh14alx44cnvxmfs9aymrblk4ism"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags
@@ -93,13 +93,7 @@
(modify-phases %standard-phases
(add-after 'unpack 'bootstrap
(lambda _
- (zero? (system* "sh" "bootstrap"))))
- (add-after 'configure 'patch-makefile
- (lambda _
- ;; Install compiled Guile files in the expected place.
- (substitute* '("Makefile")
- (("^godir = .*$")
- "godir = $(moddir)\n")))))))
+ (zero? (system* "sh" "bootstrap")))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)