From 98b880df0a212f17c9c656e2498f48925a65ca5c Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 13 Jan 2026 01:38:55 +0000 Subject: guix: Clone ccwl git repository using file://. git complains about repository permissions unless you specify file://. --- .guix/ccwl-distribution.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.guix') 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 +;;; Copyright © 2024, 2026 Arun Isaac ;;; ;;; 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" <>)) -- cgit 1.4.1