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>master
parent
86d635b850
commit
4cf3734c56
|
@ -55,6 +55,7 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix hg-download)
|
#:use-module (guix hg-download)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
|
@ -2733,20 +2734,20 @@ file contents on a remote server.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"))))
|
(base32 "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"))))
|
||||||
(build-system trivial-build-system)
|
(build-system copy-build-system)
|
||||||
(propagated-inputs
|
(inputs
|
||||||
`(("xdg-utils" ,xdg-utils)))
|
`(("xdg-utils" ,xdg-utils)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils))
|
`(#:phases
|
||||||
#:builder
|
(modify-phases %standard-phases
|
||||||
(begin
|
(add-after 'install 'wrap-program
|
||||||
(use-modules (guix build utils))
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||||
(let ((source (assoc-ref %build-inputs "source"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(out (assoc-ref %outputs "out")))
|
(xdg-utils (assoc-ref inputs "xdg-utils")))
|
||||||
(mkdir-p (string-append out "/bin"))
|
(wrap-program (string-append out "/bin/git-open")
|
||||||
(copy-file (string-append source "/git-open")
|
`("PATH" ":" prefix (,(string-append xdg-utils "/bin"))))))))
|
||||||
(string-append out "/bin/git-open"))
|
#:install-plan
|
||||||
#t))))
|
'(("git-open" "bin/git-open"))))
|
||||||
(home-page "https://github.com/paulirish/git-open")
|
(home-page "https://github.com/paulirish/git-open")
|
||||||
(synopsis "Open a Git repository's homepage from the command-line")
|
(synopsis "Open a Git repository's homepage from the command-line")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue