mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
lukesmithxyz-bible-kjv: init at unstable-2022-06-01
This commit is contained in:
parent
87ebf1654e
commit
e11520382e
29
pkgs/applications/misc/lukesmithxyz-bible/kjv.nix
Normal file
29
pkgs/applications/misc/lukesmithxyz-bible/kjv.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -3322,6 +3322,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user