me
/
guix
Archived
1
0
Fork 0

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'.
master
David Thompson 2022-09-04 09:24:22 -04:00
parent 1aa46a7e29
commit e4ccfcb22a
No known key found for this signature in database
GPG Key ID: 8328C7470FF1D807
1 changed files with 2 additions and 2 deletions

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