You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.9 KiB
87 lines
2.9 KiB
(use-modules |
|
(guix packages) |
|
((guix licenses) #:prefix license:) |
|
(guix download) |
|
(guix build-system gnu) |
|
(guix gexp) |
|
(gnu packages) |
|
(gnu packages autotools) |
|
(gnu packages guile) |
|
(gnu packages guile-xyz) |
|
(gnu packages pkg-config) |
|
(gnu packages texinfo)) |
|
|
|
(package |
|
(name "bible-tools") |
|
(version "1.0") |
|
(source (local-file "./bible-tools-1.0.tar.gz")) |
|
(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 |
|
'hall-wrap-binaries |
|
(lambda* (#:key inputs outputs #:allow-other-keys) |
|
(let* ((compiled-dir |
|
(lambda (out version) |
|
(string-append |
|
out |
|
"/lib/guile/" |
|
version |
|
"/site-ccache"))) |
|
(uncompiled-dir |
|
(lambda (out version) |
|
(string-append |
|
out |
|
"/share/guile/site" |
|
(if (string-null? version) "" "/") |
|
version))) |
|
(dep-path |
|
(lambda (env modules path) |
|
(list env |
|
":" |
|
'prefix |
|
(cons modules |
|
(map (lambda (input) |
|
(string-append |
|
(assoc-ref inputs input) |
|
path)) |
|
,''()))))) |
|
(out (assoc-ref outputs "out")) |
|
(bin (string-append out "/bin/")) |
|
(site (uncompiled-dir out ""))) |
|
(match (scandir site) |
|
(("." ".." version) |
|
(for-each |
|
(lambda (file) |
|
(wrap-program |
|
(string-append bin file) |
|
(dep-path |
|
"GUILE_LOAD_PATH" |
|
(uncompiled-dir out version) |
|
(uncompiled-dir "" version)) |
|
(dep-path |
|
"GUILE_LOAD_COMPILED_PATH" |
|
(compiled-dir out version) |
|
(compiled-dir "" version)))) |
|
,''("bible-app" "word-counter" "bible2latex")) |
|
#t)))))))) |
|
(native-inputs |
|
`(("autoconf" ,autoconf) |
|
("automake" ,automake) |
|
("pkg-config" ,pkg-config) |
|
("texinfo" ,texinfo) |
|
("guile-hall" ,guile-hall) |
|
("guile" ,guile-3.0))) |
|
(inputs `(("guile" ,guile-3.0))) |
|
(propagated-inputs `()) |
|
(synopsis "") |
|
(description "") |
|
(home-page "") |
|
(license license:gpl3+))
|
|
|