2018-06-29 11:49:33 +01:00
|
|
|
{ stdenv, fetchFromGitHub, perl, pkgconfig, cmake, ninja, vala, gobjectIntrospection
|
|
|
|
, python3, tzdata, gtk-doc, docbook_xsl, docbook_xml_dtd_43, glib, libxml2, icu }:
|
2009-02-18 20:57:36 +00:00
|
|
|
|
2011-11-07 16:48:40 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-27 00:29:57 +00:00
|
|
|
name = "libical-${version}";
|
2018-08-21 13:42:46 +01:00
|
|
|
version = "3.0.4";
|
2018-06-29 11:49:33 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-03-27 00:29:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libical";
|
|
|
|
repo = "libical";
|
|
|
|
rev = "v${version}";
|
2018-08-21 13:42:46 +01:00
|
|
|
sha256 = "1qgpbdjd6jsivw87v5w52268kqp0rv780kli8cgb3ndlv592wlbm";
|
2009-02-18 20:57:36 +00:00
|
|
|
};
|
2015-03-27 00:29:57 +00:00
|
|
|
|
2018-06-29 11:49:33 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
perl pkgconfig cmake ninja vala gobjectIntrospection
|
|
|
|
(python3.withPackages (pkgs: with pkgs; [ pygobject3 ])) # running libical-glib tests
|
|
|
|
gtk-doc docbook_xsl docbook_xml_dtd_43 # docs
|
|
|
|
];
|
|
|
|
buildInputs = [ glib libxml2 icu ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DGOBJECT_INTROSPECTION=True"
|
|
|
|
"-DICAL_GLIB_VAPI=True"
|
|
|
|
];
|
2012-08-08 10:10:36 +01:00
|
|
|
|
2017-09-18 02:25:11 +01:00
|
|
|
patches = [
|
|
|
|
# TODO: upstream this patch
|
2018-06-29 11:49:33 +01:00
|
|
|
# https://github.com/libical/libical/issues/350
|
2017-09-18 02:25:11 +01:00
|
|
|
./respect-env-tzdir.patch
|
|
|
|
];
|
2015-03-27 00:29:57 +00:00
|
|
|
|
2018-06-29 11:49:33 +01:00
|
|
|
# Using install check so we do not have to manually set
|
|
|
|
# LD_LIBRARY_PATH and GI_TYPELIB_PATH variables
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
|
|
|
|
export TZDIR=${tzdata}/share/zoneinfo
|
|
|
|
ctest --output-on-failure
|
|
|
|
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
2018-04-25 04:20:18 +01:00
|
|
|
|
2015-03-27 00:29:57 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/libical/libical;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "An Open Source implementation of the iCalendar protocols";
|
2018-06-29 11:49:33 +01:00
|
|
|
license = licenses.mpl20;
|
2015-03-27 00:29:57 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
2009-02-18 20:57:36 +00:00
|
|
|
}
|