diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-12-16 20:46:53 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-12-16 20:46:53 -0500 |
commit | 92f51bce9bc6f43013591cad0b101975f01968c8 (patch) | |
tree | aae5a826f23692478deb7d32ebfbb612c66438de | |
parent | a9ed3d67870b5adcafb00d102513d54ce347f562 (diff) |
guix: Update chickadee package recipe.
-rw-r--r-- | guix.scm | 15 |
1 files changed, 4 insertions, 11 deletions
@@ -137,10 +137,10 @@ SDL2 C shared library via the foreign function interface.") (license lgpl3+)))) (define chickadee - (let ((commit "0436ff21bca02e382a980ba7a436878eebebd4a3")) + (let ((commit "fdecd79ef75c2565fda816d295ef92141da83dc3")) (package (name "chickadee") - (version "0.1") + (version "0.4.0") (source (origin (method git-fetch) (uri (git-reference @@ -148,7 +148,7 @@ SDL2 C shared library via the foreign function interface.") (commit commit))) (sha256 (base32 - "160pkr1v9gqhqm6ly1a2p22mkqrshd603ql0zg0521pajs29rs87")))) + "1crv21ksc2rp2zgiaw9b0hklfdxa3rdj5c4rrx5wsz03nxgalg58")))) (build-system gnu-build-system) (arguments '(#:make-flags '("GUILE_AUTO_COMPILE=0") @@ -156,14 +156,7 @@ SDL2 C shared library via the foreign function interface.") (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) |