diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-08-21 16:41:18 +0200 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-08-23 21:05:55 -0400 |
commit | 897fa5156ff41588e0d281eb00e4e94de63ccd8a (patch) | |
tree | 927eef6e219638582c31740710da11f7a56f1f0a | |
parent | 78bb30053fb7696c705e12487fa9b2b01fcfd0fb (diff) |
guix: Build from local checkout.
-rw-r--r-- | guix.scm | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -29,6 +29,7 @@ (use-modules (guix packages) (guix licenses) + (guix git) (guix git-download) (guix build-system gnu) (gnu packages) @@ -39,14 +40,7 @@ (package (name "guile-syntax-highlight") (version "0.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "git://dthompson.us/guile-syntax-highlight.git") - (commit "2fd5092"))) - (sha256 - (base32 - "0s1py5q80rjixdhmjvcnk4bnnfgp6bj786ippxsbg2grl77iplk9")))) + (source (git-checkout (url (dirname (current-filename))))) (build-system gnu-build-system) (arguments '(#:phases |