From 017df24f576f1f3a66758ac72f11e5318839227e Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Mon, 16 Sep 2024 21:41:02 +0200 Subject: Fix build of patched git's manpages --- tw/packages/git.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tw/packages/git.scm b/tw/packages/git.scm index 9cfda5c3..291c101d 100644 --- a/tw/packages/git.scm +++ b/tw/packages/git.scm @@ -251,7 +251,8 @@ (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (man (string-append out "/share/man")) - (manpages (assoc-ref inputs "git-manpages"))) + (manpages (or (assoc-ref inputs "git-manpages") + (assoc-ref inputs "source")))) (mkdir-p man) (with-directory-excursion man (invoke "tar" "xvf" manpages))))) -- cgit v1.2.3