mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: git-lfs: Patch /bin/sh references.
* gnu/packages/version-control.scm (git-lfs) [arguments]: Add patch-/bin/sh phase. Change-Id: I2d455e683e4f6e30cd32f5b1fdaccac71616826c Reviewed-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ce12a4118a
commit
b6a070d2a3
1 changed files with 5 additions and 0 deletions
|
@ -3175,6 +3175,11 @@ (define-public git-lfs
|
|||
#:install-source? #f
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-/bin/sh
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/github.com/git-lfs/git-lfs/lfs/hook.go"
|
||||
(("/bin/sh")
|
||||
(search-input-file inputs "bin/sh")))))
|
||||
(add-after 'unpack 'fix-embed-x-net
|
||||
(lambda _
|
||||
(delete-file-recursively "src/golang.org/x/net/publicsuffix/data")
|
||||
|
|
Loading…
Reference in a new issue