diff options
-rw-r--r-- | guix.scm | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -36,6 +36,7 @@ (use-modules (ice-9 match) (srfi srfi-1) + (guix gexp) (guix packages) (guix licenses) (guix git-download) @@ -121,15 +122,8 @@ SDL2 C shared library via the foreign function interface.") (define sly (package (name "sly") - (version "0.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "git://dthompson.us/sly.git") - (commit "9c8c44a"))) - (sha256 - (base32 - "021af35c2yz7hm8ax3mbxnrma0fbijplakl0xy61gjg3w89bjsll")))) + (version "0.2.0") + (source (local-file "." #:recursive? #t)) (build-system gnu-build-system) (arguments '(#:phases |