biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / kjv / lukesmithxyz-kjv.nix
blob27a1a90502845c0b34ebd65c96354dcdf1c7d84a
1 { lib
2 , gawk
3 , stdenv
4 , fetchFromGitHub
5 }:
7 stdenv.mkDerivation rec {
8   pname = "lukesmithxyz-bible-kjv";
9   version = "unstable-2022-06-01";
11   src = fetchFromGitHub {
12     owner = "lukesmithxyz";
13     repo = "kjv";
14     rev = "1b675c0396806a2a3d134c51fd11d9fed8ea3dc5";
15     hash = "sha256-ii5SGZmO99VYbKdebfEbN3rL7LLSSQ0jm5mGqX2G3o0=";
16   };
18   buildInputs = [ gawk ];
20   makeFlags = [ "PREFIX=$(out)" ];
22   meta = with lib; {
23     description = "Read the Word of God from your terminal + Apocrypha";
24     mainProgram = "kjv";
25     homepage = "https://lukesmith.xyz/articles/command-line-bibles";
26     license = licenses.unlicense;
27     platforms = platforms.unix;
28     maintainers = [ maintainers.wesleyjrz ];
29   };