mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
grb: init at 2022-07-02
This commit is contained in:
parent
9fc93d921b
commit
441730b4e8
24
pkgs/applications/misc/grb/default.nix
Normal file
24
pkgs/applications/misc/grb/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "grb";
|
||||
version = "unstable-2022-07-02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LukeSmithxyz";
|
||||
repo = pname;
|
||||
rev = "35a5353ab147b930c39e1ccd369791cc4c27f0df";
|
||||
sha256 = "sha256-hQ21DXnkBJVCgGXQKDR+DjaDC3RXS2pNmSLDoHvHA4E=";
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cli-accessible Greek Bible with the Septuagint, SBL and Apocrypha";
|
||||
homepage = "https://github.com/LukeSmithxyz/grb";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = [ maintainers.cafkafk ];
|
||||
};
|
||||
}
|
@ -2726,6 +2726,8 @@ with pkgs;
|
||||
|
||||
goku = callPackage ../os-specific/darwin/goku { };
|
||||
|
||||
grb = callPackage ../applications/misc/grb { };
|
||||
|
||||
kerf = kerf_1; /* kerf2 is WIP */
|
||||
kerf_1 = callPackage ../development/interpreters/kerf {
|
||||
stdenv = clangStdenv;
|
||||
|
Loading…
Reference in New Issue
Block a user