Skip to content

Commit

Permalink
gnu: kurly: Install some documentation.
Browse files Browse the repository at this point in the history
* gnu/packages/curl.scm (kurly)[arguments]: Install the README in an
'install-readme' phase and don't install the source code.
  • Loading branch information
lfam committed Jan 9, 2018
1 parent 3aad4ed commit 4880fdd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion gnu/packages/curl.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4880fdd

Please sign in to comment.