Browse Source

Scripts corrected

master
Silas Vedder 2 years ago
parent
commit
89c529053b
  1. 4
      guix.scm
  2. 2
      scripts/bible2latex.in
  3. 2
      scripts/count-words.in

4
guix.scm

@ -20,9 +20,9 @@
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://git.silasvedder.xyz/silasfox/bible-tools.git") (url "https://git.silasvedder.xyz/silasfox/bible-tools.git")
(commit "9b6ff8e"))) (commit "2e7be5e")))
(file-name "bible-tools-1.0-checkout") (file-name "bible-tools-1.0-checkout")
(sha256 (base32 "0rnmg8ni5swf04j0cf93nbl1z5353gq19fpw2xa9p2zad7phnw52")))) (sha256 (base32 "0l3ndyzy6sq1cdkaklhyg1mvy6hsil7b86wk3nbs5mqgrcypar1z"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:modules `(#:modules

2
scripts/bible2latex.in

@ -1,5 +1,5 @@
#! /usr/bin/env sh #! /usr/bin/env sh
exec guile -l bible-tools.scm -e '(@ (bible2latex) main)' -s bible2latex "$@" exec guile -e '(@ (bible2latex) main)' -s "$0" "$@"
!# !#
(define-module (bible2latex) (define-module (bible2latex)

2
scripts/count-words.in

@ -1,5 +1,5 @@
#! /usr/bin/env sh #! /usr/bin/env sh
exec guile -l bible-tools.scm -e '(@ (count-words) main)' -s count-words "$@" exec guile -e '(@ (count-words) main)' -s "$0" "$@"
!# !#
(define-module (count-words) (define-module (count-words)

Loading…
Cancel
Save