gnu: shroud: Wrap 'shroud' with 'GUILE_LOAD_COMPILED_PATH'.

* gnu/packages/password-utils.scm (shroud)[arguments]: New field.
master
宋文武 2016-09-30 20:19:15 +08:00
parent ebb9b9a60c
commit df0e8a239b
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 11 additions and 0 deletions

View File

@ -109,6 +109,17 @@ algorithms AES or Twofish.")
(base32
"1y43yhgy2zbrk5bqj3qyx9rkcz2bma9sinlrg7dip3jqms9gq4lr"))))
(build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'install 'wrap-shroud
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(ccachedir (string-append out "/lib/guile/2.0/ccache"))
(prog (string-append out "/bin/shroud")))
(wrap-program prog
`("GUILE_LOAD_COMPILED_PATH" ":" prefix (,ccachedir)))
#t))))))
(inputs
`(("guile" ,guile-2.0)
("gnupg" ,gnupg)