summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-07-30 19:50:18 -0400
committerDavid Thompson <dthompson2@worcester.edu>2016-07-30 19:50:18 -0400
commit1d75ed151a617c7cc734cb7483efcae85e295623 (patch)
treead62f3f8ebf628731ed5deb37658c9f83d20f4b4
parentbdefee178b656a8f1ab83732f0e6461ad2d2ff50 (diff)
guix: Use local-file for building the git checkout as a Guix package.
-rw-r--r--guix.scm12
1 files changed, 3 insertions, 9 deletions
diff --git a/guix.scm b/guix.scm
index 82649bf..a4073c6 100644
--- a/guix.scm
+++ b/guix.scm
@@ -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