diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-09-05 14:00:30 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-09-05 14:00:30 -0400 |
commit | c4504dfb1da78f2f21fc5139a2fd5e82ed0ef21c (patch) | |
tree | c7c89e327b9977a862f3f14969ba1b30c5429633 /gnu/packages | |
parent | ca94157380b4ceb92f940f1d95c44e79b4521874 (diff) | |
download | guix-c4504dfb1da78f2f21fc5139a2fd5e82ed0ef21c.tar.gz |
Revert "gnu: gitolite: Switch to git-minimal to reduce closure size."
This reverts commit e4ccfcb22ad96e71ca4dfad95af5aa6229ed9869.
Diffstat (limited to 'gnu/packages')
-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 7efca514e4..a7989da200 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-minimal"))) + (git (assoc-ref inputs "git"))) (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-minimal inetutils openssh perl)) + (list bash-minimal coreutils findutils git inetutils openssh perl)) (home-page "https://gitolite.com") (synopsis "Git access control layer") (description |