me
/
guix
Archived
1
0
Fork 0

gnu: kurly: Install some documentation.

* gnu/packages/curl.scm (kurly)[arguments]: Install the README in an
'install-readme' phase and don't install the source code.
master
Leo Famulari 2018-01-08 20:30:10 -05:00
parent 3aad4ed396
commit 4880fddd5c
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 11 additions and 1 deletions

View File

@ -153,7 +153,17 @@ tunneling, and so on.")
"1q192f457sjypgvwq7grrf8gq8w272p3zf1d5ppc20mriqm0mbc3"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/davidjpeacock/kurly"))
`(#:import-path "github.com/davidjpeacock/kurly"
#:install-source? #f
#:phases
(modify-phases %standard-phases
(add-after 'install 'install-readme
(lambda* (#:key outputs import-path #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(readme (string-append "src/" import-path "/README.md"))
(misc (string-append out "/share/kurly/misc/")))
(install-file readme misc)
#t))))))
(inputs
`(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress)
("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar)