bibletime: 3.0.2 -> 3.0.3

This commit is contained in:
AndersonTorres 2022-07-07 07:42:04 -03:00
parent 1d51d94f33
commit 8344ddaf45

View file

@ -1,4 +1,5 @@
{ lib, mkDerivation { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, docbook_xml_dtd_45 , docbook_xml_dtd_45
@ -14,15 +15,15 @@
, sword , sword
}: }:
mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "bibletime"; pname = "bibletime";
version = "3.0.2"; version = "3.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bibletime"; owner = "bibletime";
repo = "bibletime"; repo = finalAttrs.pname;
rev = "v${version}"; rev = "v${finalAttrs.version}";
hash = "sha256-8X5LkquALFnG0yRayZYjeymHDcOzINBv0MXeVBsOnfI="; hash = "sha256-4O8F5/EyoJFJBEWOAs9lzN3TKuu/CEdKfPaOF8gNqps=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -55,10 +56,10 @@ mkDerivation rec {
]; ];
meta = with lib; { meta = with lib; {
description = "A powerful cross platform Bible study tool";
homepage = "http://www.bibletime.info/"; homepage = "http://www.bibletime.info/";
platforms = platforms.linux; description = "A powerful cross platform Bible study tool";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = [ ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
}; };
} })