tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
grb: init at 2022-07-02
cafkafk
3 years ago
441730b4
9fc93d92
+26
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
grb
default.nix
top-level
all-packages.nix
+24
pkgs/applications/misc/grb/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib, stdenv, fetchFromGitHub }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
pname = "grb";
5
+
version = "unstable-2022-07-02";
6
+
7
+
src = fetchFromGitHub {
8
+
owner = "LukeSmithxyz";
9
+
repo = pname;
10
+
rev = "35a5353ab147b930c39e1ccd369791cc4c27f0df";
11
+
sha256 = "sha256-hQ21DXnkBJVCgGXQKDR+DjaDC3RXS2pNmSLDoHvHA4E=";
12
+
};
13
+
14
+
makeFlags = [
15
+
"PREFIX=${placeholder "out"}"
16
+
];
17
+
18
+
meta = with lib; {
19
+
description = "A cli-accessible Greek Bible with the Septuagint, SBL and Apocrypha";
20
+
homepage = "https://github.com/LukeSmithxyz/grb";
21
+
license = licenses.publicDomain;
22
+
maintainers = [ maintainers.cafkafk ];
23
+
};
24
+
}
+2
pkgs/top-level/all-packages.nix
···
2726
2727
goku = callPackage ../os-specific/darwin/goku { };
2728
0
0
2729
kerf = kerf_1; /* kerf2 is WIP */
2730
kerf_1 = callPackage ../development/interpreters/kerf {
2731
stdenv = clangStdenv;
···
2726
2727
goku = callPackage ../os-specific/darwin/goku { };
2728
2729
+
grb = callPackage ../applications/misc/grb { };
2730
+
2731
kerf = kerf_1; /* kerf2 is WIP */
2732
kerf_1 = callPackage ../development/interpreters/kerf {
2733
stdenv = clangStdenv;