tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bibletime: 3.0.2 -> 3.0.3
AndersonTorres
3 years ago
8344ddaf
1d51d94f
+11
-10
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
bibletime
default.nix
+11
-10
pkgs/applications/misc/bibletime/default.nix
···
1
-
{ lib, mkDerivation
0
2
, fetchFromGitHub
3
, cmake
4
, docbook_xml_dtd_45
···
14
, sword
15
}:
16
17
-
mkDerivation rec {
18
pname = "bibletime";
19
-
version = "3.0.2";
20
21
src = fetchFromGitHub {
22
owner = "bibletime";
23
-
repo = "bibletime";
24
-
rev = "v${version}";
25
-
hash = "sha256-8X5LkquALFnG0yRayZYjeymHDcOzINBv0MXeVBsOnfI=";
26
};
27
28
nativeBuildInputs = [
···
55
];
56
57
meta = with lib; {
58
-
description = "A powerful cross platform Bible study tool";
59
homepage = "http://www.bibletime.info/";
60
-
platforms = platforms.linux;
61
license = licenses.gpl2Plus;
62
-
maintainers = [ ];
0
63
};
64
-
}
···
1
+
{ lib
2
+
, stdenv
3
, fetchFromGitHub
4
, cmake
5
, docbook_xml_dtd_45
···
15
, sword
16
}:
17
18
+
stdenv.mkDerivation (finalAttrs: {
19
pname = "bibletime";
20
+
version = "3.0.3";
21
22
src = fetchFromGitHub {
23
owner = "bibletime";
24
+
repo = finalAttrs.pname;
25
+
rev = "v${finalAttrs.version}";
26
+
hash = "sha256-4O8F5/EyoJFJBEWOAs9lzN3TKuu/CEdKfPaOF8gNqps=";
27
};
28
29
nativeBuildInputs = [
···
56
];
57
58
meta = with lib; {
0
59
homepage = "http://www.bibletime.info/";
60
+
description = "A powerful cross platform Bible study tool";
61
license = licenses.gpl2Plus;
62
+
maintainers = with maintainers; [ AndersonTorres ];
63
+
platforms = platforms.linux;
64
};
65
+
})