mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: git-open: Remove unnecessary propagated input.
* gnu/packages/version-control.scm (git-open)[arguments]: Wrap the git-open executable with the path to xdg-utils. [propagated-inputs]: Replace with ... [inputs]: New field. [build-system]: Use copy-build-system. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
86d635b850
commit
4cf3734c56
1 changed files with 13 additions and 12 deletions
|
@ -55,6 +55,7 @@ (define-module (gnu packages version-control)
|
|||
#:use-module (guix git-download)
|
||||
#:use-module (guix hg-download)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system copy)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system go)
|
||||
#:use-module (guix build-system perl)
|
||||
|
@ -2733,20 +2734,20 @@ (define-public git-open
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"))))
|
||||
(build-system trivial-build-system)
|
||||
(propagated-inputs
|
||||
(build-system copy-build-system)
|
||||
(inputs
|
||||
`(("xdg-utils" ,xdg-utils)))
|
||||
(arguments
|
||||
`(#:modules ((guix build utils))
|
||||
#:builder
|
||||
(begin
|
||||
(use-modules (guix build utils))
|
||||
(let ((source (assoc-ref %build-inputs "source"))
|
||||
(out (assoc-ref %outputs "out")))
|
||||
(mkdir-p (string-append out "/bin"))
|
||||
(copy-file (string-append source "/git-open")
|
||||
(string-append out "/bin/git-open"))
|
||||
#t))))
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'wrap-program
|
||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(xdg-utils (assoc-ref inputs "xdg-utils")))
|
||||
(wrap-program (string-append out "/bin/git-open")
|
||||
`("PATH" ":" prefix (,(string-append xdg-utils "/bin"))))))))
|
||||
#:install-plan
|
||||
'(("git-open" "bin/git-open"))))
|
||||
(home-page "https://github.com/paulirish/git-open")
|
||||
(synopsis "Open a Git repository's homepage from the command-line")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue