diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-09-04 09:24:22 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-09-04 09:25:13 -0400 |
commit | e4ccfcb22ad96e71ca4dfad95af5aa6229ed9869 (patch) | |
tree | 3df5283b29e51b029e18cbc940c0fed6655235b4 /gnu | |
parent | 1aa46a7e29c5bd892219fe20fefb883d2103e29e (diff) | |
download | guix-e4ccfcb22ad96e71ca4dfad95af5aa6229ed9869.tar.gz |
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'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/version-control.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index a7989da200..7efca514e4 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -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 |