mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: git-lfs: Fix build.
This change is to bypass combination of go-build-system and custom make targets where the import path is set manually, see discussion in guix/guix#2133. * gnu/packages/version-control.scm (git-lfs): Rename binary and home page Change-Id: Ic87627412f715ebed07cf79ddd298e777746975f Reviewed-by: Nicolas Graves <ngraves@ngraves.fr> Reviewed-by: Maxim Cournoyer <maxim@guixotic.coop> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
58b6dc4d55
commit
29d364498e
1 changed files with 6 additions and 2 deletions
|
|
@ -4224,7 +4224,11 @@ will reconstruct the object along its delta-base chain and return it.")
|
|||
(install-file manpage
|
||||
(string-append #$output "/share/man/man1")))
|
||||
(find-files "." "^git-lfs.*\\.1$"))))))
|
||||
#~()))))
|
||||
#~())
|
||||
(add-after 'install 'rename-binary
|
||||
(lambda _
|
||||
(with-directory-excursion (string-append #$output "/bin")
|
||||
(rename-file "v3" "git-lfs")))))))
|
||||
(native-inputs
|
||||
(append (list git-minimal
|
||||
go-github-com-avast-retry-go
|
||||
|
|
@ -4251,7 +4255,7 @@ will reconstruct the object along its delta-base chain and return it.")
|
|||
(if (supported-package? ruby-asciidoctor/minimal)
|
||||
(list ronn-ng ruby-asciidoctor/minimal)
|
||||
'())))
|
||||
(home-page "https://git-lfs.github.com/")
|
||||
(home-page "https://git-lfs.com/")
|
||||
(synopsis "Git extension for versioning large files")
|
||||
(description
|
||||
"Git Large File Storage (LFS) replaces large files such as audio samples,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue