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
1
-
{ lib, mkDerivation
1
1
+
{ lib
2
2
+
, stdenv
2
3
, fetchFromGitHub
3
4
, cmake
4
5
, docbook_xml_dtd_45
···
14
15
, sword
15
16
}:
16
17
17
17
-
mkDerivation rec {
18
18
+
stdenv.mkDerivation (finalAttrs: {
18
19
pname = "bibletime";
19
19
-
version = "3.0.2";
20
20
+
version = "3.0.3";
20
21
21
22
src = fetchFromGitHub {
22
23
owner = "bibletime";
23
23
-
repo = "bibletime";
24
24
-
rev = "v${version}";
25
25
-
hash = "sha256-8X5LkquALFnG0yRayZYjeymHDcOzINBv0MXeVBsOnfI=";
24
24
+
repo = finalAttrs.pname;
25
25
+
rev = "v${finalAttrs.version}";
26
26
+
hash = "sha256-4O8F5/EyoJFJBEWOAs9lzN3TKuu/CEdKfPaOF8gNqps=";
26
27
};
27
28
28
29
nativeBuildInputs = [
···
55
56
];
56
57
57
58
meta = with lib; {
58
58
-
description = "A powerful cross platform Bible study tool";
59
59
homepage = "http://www.bibletime.info/";
60
60
-
platforms = platforms.linux;
60
60
+
description = "A powerful cross platform Bible study tool";
61
61
license = licenses.gpl2Plus;
62
62
-
maintainers = [ ];
62
62
+
maintainers = with maintainers; [ AndersonTorres ];
63
63
+
platforms = platforms.linux;
63
64
};
64
64
-
}
65
65
+
})