mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: gash: Install modules in the standard locations.
* gnu/packages/shells.scm (gash)[source](modules, snippet): New fields.
This commit is contained in:
parent
6c79cee2e3
commit
e00b24778d
1 changed files with 12 additions and 1 deletions
|
@ -802,7 +802,18 @@ (define-public gash
|
|||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"00m3lif64zyxd41cnk208kc81nl6qz659676qgiaqgwrw0brzrid"))))
|
||||
"00m3lif64zyxd41cnk208kc81nl6qz659676qgiaqgwrw0brzrid"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(substitute* "Makefile.in"
|
||||
(("^moddir = (.*)/guile/(.*)" _ before after)
|
||||
(string-append "moddir = " before "/guile/site/"
|
||||
after))
|
||||
(("^ccachedir = (.*)/ccache/(.*)" _ before after)
|
||||
(string-append "ccachedir = " before
|
||||
"/site-ccache/" after)))
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
|
|
Loading…
Reference in a new issue