1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: gitolite: Switch to git-minimal to reduce closure size.

* gnu/packages/version-control.scm (gitolite)[inputs]: Swap 'git' for
'git-minimal'.
[arguments]: Refer to 'git-minimal' input instead of 'git'.
This commit is contained in:
David Thompson
2022-09-04 09:24:22 -04:00
parent 1aa46a7e29
commit e4ccfcb22a

View File

@@ -1572,7 +1572,7 @@ also walk each side of a merge and test those changes individually.")
(let ((out (assoc-ref outputs "out"))
(coreutils (assoc-ref inputs "coreutils"))
(findutils (assoc-ref inputs "findutils"))
(git (assoc-ref inputs "git")))
(git (assoc-ref inputs "git-minimal")))
(for-each (lambda (file-name)
(wrap-program (string-append out file-name)
`("PATH" ":" prefix
@@ -1581,7 +1581,7 @@ also walk each side of a merge and test those changes individually.")
(list out coreutils findutils git)))))
'("/bin/gitolite" "/bin/gitolite-shell"))))))))
(inputs
(list bash-minimal coreutils findutils git inetutils openssh perl))
(list bash-minimal coreutils findutils git-minimal inetutils openssh perl))
(home-page "https://gitolite.com")
(synopsis "Git access control layer")
(description