diff options
| author | Arun Isaac | 2026-01-13 01:38:55 +0000 |
|---|---|---|
| committer | Arun Isaac | 2026-01-13 01:43:34 +0000 |
| commit | 98b880df0a212f17c9c656e2498f48925a65ca5c (patch) | |
| tree | f61a58f1d3cd395ed64b6286f2e131c29f55ea50 /.guix | |
| parent | 455c3bc1896dcbbab2b26511e072a22d54963bc3 (diff) | |
| download | ccwl-98b880df0a212f17c9c656e2498f48925a65ca5c.tar.gz ccwl-98b880df0a212f17c9c656e2498f48925a65ca5c.tar.lz ccwl-98b880df0a212f17c9c656e2498f48925a65ca5c.zip | |
guix: Clone ccwl git repository using file://.
git complains about repository permissions unless you specify file://.
Diffstat (limited to '.guix')
| -rw-r--r-- | .guix/ccwl-distribution.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.guix/ccwl-distribution.scm b/.guix/ccwl-distribution.scm index 2b97f94..a77256a 100644 --- a/.guix/ccwl-distribution.scm +++ b/.guix/ccwl-distribution.scm @@ -1,5 +1,5 @@ ;;; ccwl --- Concise Common Workflow Language -;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2024, 2026 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of ccwl. ;;; @@ -54,7 +54,7 @@ "GUILE_LOAD_COMPILED_PATH" (list (string-append "/lib/guile/" (target-guile-effective-version) "/site-ccache")) (list #$development-profile)) - (invoke "git" "clone" #$ccwl-git-repo (getcwd)) + (invoke "git" "clone" (string-append "file://" #$ccwl-git-repo) (getcwd)) (invoke "sh" "configure") (invoke "make" "dist") (match (scandir (getcwd) (cut string-suffix? ".tar.lz" <>)) |
