bibletime: 3.0.2 -> 3.0.3

+11 -10
+11 -10
pkgs/applications/misc/bibletime/default.nix
··· 1 - { lib, mkDerivation 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 = [ ]; 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; { 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 + })