mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: haunt: Wrap 'haunt' command so that it finds its modules.
* gnu/packages/guile.scm (haunt)[arguments]: New field.
This commit is contained in:
parent
f5582b2c1d
commit
4ecbf6d282
1 changed files with 22 additions and 0 deletions
|
@ -700,6 +700,28 @@ (define-public haunt
|
||||||
(base32
|
(base32
|
||||||
"15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x"))))
|
"15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:modules ((ice-9 match) (ice-9 ftw)
|
||||||
|
,@%gnu-build-system-modules)
|
||||||
|
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'install 'wrap-haunt
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
;; Wrap the 'haunt' command to refer to the right
|
||||||
|
;; modules.
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(bin (string-append out "/bin"))
|
||||||
|
(site (string-append
|
||||||
|
out "/share/guile/site")))
|
||||||
|
(match (scandir site)
|
||||||
|
(("." ".." version)
|
||||||
|
(let ((modules (string-append site "/" version)))
|
||||||
|
(wrap-program (string-append bin "/haunt")
|
||||||
|
`("GUILE_LOAD_PATH" ":" prefix
|
||||||
|
(,modules))
|
||||||
|
`("GUILE_LOAD_COMPILED_PATH" ":" prefix
|
||||||
|
(,modules)))
|
||||||
|
#t)))))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.0)))
|
`(("guile" ,guile-2.0)))
|
||||||
(synopsis "Functional static site generator")
|
(synopsis "Functional static site generator")
|
||||||
|
|
Loading…
Reference in a new issue