2024-03-04 22:46:36 +00:00
|
|
|
#+title: Readme
|
2024-03-05 03:49:40 +00:00
|
|
|
* ESV license notes
|
2024-03-05 03:35:35 +00:00
|
|
|
The ESV license doesn't allow me to distribute copies of the ESV with this project.
|
2024-09-18 12:54:31 +00:00
|
|
|
Therefore, this project has a derivation to fetch a copy and convert it appropriately.
|
2024-03-05 03:35:35 +00:00
|
|
|
|
2024-09-18 12:54:31 +00:00
|
|
|
* Build
|
|
|
|
Previous versions of this script used a Makefile.
|
|
|
|
The current version uses a nix flake, because I wanted practice writing flakes.
|
2024-03-04 22:46:36 +00:00
|
|
|
#+begin_src shell
|
|
|
|
git clone https://git.freedomland.xyz/judahsotomayor/esv
|
|
|
|
cd esv
|
2024-09-18 12:54:31 +00:00
|
|
|
nix build
|
2024-03-04 22:46:36 +00:00
|
|
|
#+end_src
|
|
|
|
|
|
|
|
* Use
|
|
|
|
#+begin_src shell :results drawer
|
|
|
|
esv John 3:16
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
#+RESULTS:
|
|
|
|
: John
|
|
|
|
: 3:16 “For God so loved the world, that he gave his only Son, that whoever
|
|
|
|
: believes in him should not perish but have eternal life.
|
|
|
|
|
|
|
|
* Credits
|
|
|
|
Thanks to Luke Smith's kjv project.
|
2024-03-05 02:19:45 +00:00
|
|
|
I took the awk scripts, Makefile, and shell script from him.
|
2024-03-04 22:46:36 +00:00
|
|
|
|
|
|
|
https://github.com/LukeSmithxyz/kjv
|