From 94b6528cbda6839c0f825a006a86071abcb32c70 Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Tue, 11 Nov 2025 14:04:35 +0100 Subject: [PATCH] gnu: git: Fix disallowed references. This is a follow-up to ad461613d97f974e9e1aa30dc27753aa360476de. * gnu/packages/version-control.scm (git)[#:disallowed-references]: Explicitly list disallowed references instead of removing perl. Fixes: guix/guix#4187 (Transformed git references disallowed perl) --- gnu/packages/version-control.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index bff2252a3826c667af614a4b65b2cac72f1aea43..a00fb3800a403400e4a73002a17bef77df5cf9b4 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -611,7 +611,7 @@ everything from small to very large projects with speed and efficiency.") (arguments (substitute-keyword-arguments (package-arguments git-minimal) ((#:disallowed-references disallowed-refs ''()) - (delq (this-package-native-input "perl") disallowed-refs)) + (list (this-package-native-input "bash"))) ((#:make-flags flags #~'()) #~(cons "USE_LIBPCRE2=yes" #$flags)) ((#:configure-flags flags #~'())