Merge pull request #209738 from wesleyjrz/add-lukesmithxyz-bible-kjv

lukesmithxyz-bible-kjv: init at unstable-2022-06-01
This commit is contained in:
Nick Cao 2023-01-16 16:28:02 +08:00 committed by GitHub
commit 9a7928e1ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, gawk
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "lukesmithxyz-bible-kjv";
version = "unstable-2022-06-01";
src = fetchFromGitHub {
owner = "lukesmithxyz";
repo = "kjv";
rev = "1b675c0396806a2a3d134c51fd11d9fed8ea3dc5";
hash = "sha256-ii5SGZmO99VYbKdebfEbN3rL7LLSSQ0jm5mGqX2G3o0=";
};
buildInputs = [ gawk ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Read the Word of God from your terminal + Apocrypha";
homepage = "https://lukesmith.xyz/articles/command-line-bibles";
license = licenses.unlicense;
platforms = platforms.unix;
maintainers = [ maintainers.wesleyjrz ];
};
}

View File

@ -3350,6 +3350,8 @@ with pkgs;
kjv = callPackage ../applications/misc/kjv { };
lukesmithxyz-bible-kjv = callPackage ../applications/misc/lukesmithxyz-bible/kjv.nix { };
luigi = callPackage ../applications/networking/cluster/luigi { };
m-cli = callPackage ../os-specific/darwin/m-cli { };