gnu: mumi: Install .go files in the right place.
* gnu/packages/mail.scm (mumi)[source](modules, snippet): New fields.
This commit is contained in:
parent
1214684bbd
commit
18e4d11bdf
1 changed files with 11 additions and 1 deletions
|
@ -2949,7 +2949,17 @@ replacement for the @code{urlview} program.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1575gn5p086sjxz5hvg6iyskq6cxf6vf50s9nsc4xgrbcqa3pv2c"))))
|
"1575gn5p086sjxz5hvg6iyskq6cxf6vf50s9nsc4xgrbcqa3pv2c"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Install .go files to $prefix/lib instead of
|
||||||
|
;; $prefix/share.
|
||||||
|
(substitute* "Makefile.am"
|
||||||
|
(("^godir[[:space:]]*=.*")
|
||||||
|
"godir = \
|
||||||
|
$(libdir)/guile/@GUILE_EFFECTIVE_VERSION@/site-ccache\n"))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
|
|
Reference in a new issue