diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-07-30 19:50:18 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-07-30 19:50:18 -0400 |
commit | 1d75ed151a617c7cc734cb7483efcae85e295623 (patch) | |
tree | ad62f3f8ebf628731ed5deb37658c9f83d20f4b4 | |
parent | bdefee178b656a8f1ab83732f0e6461ad2d2ff50 (diff) |
guix: Use local-file for building the git checkout as a Guix package.
-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 |