2018-12-25 22:41:02 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, json-glib, gcr
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection, liboauth, gnome3, p11-kit, openssl, uhttpmock }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-12-25 03:11:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:00:37 +00:00
|
|
|
pname = "libgdata";
|
|
|
|
version = "0.17.9";
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-25 03:11:30 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2017-10-03 02:11:19 +01:00
|
|
|
sha256 = "0fj54yqxdapdppisqm1xcyrpgcichdmipq0a0spzz6009ikzgi45";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
2018-12-25 03:11:30 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool gobject-introspection ];
|
|
|
|
|
2019-02-13 21:47:50 +00:00
|
|
|
buildInputs = [ gnome3.libsoup libxml2 glib liboauth gcr gnome3.gnome-online-accounts p11-kit openssl uhttpmock ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
propagatedBuildInputs = [ json-glib ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-03 01:00:37 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none"; # Stable version has not been updated for a long time.
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "GData API library";
|
2018-03-03 01:00:37 +00:00
|
|
|
homepage = https://wiki.gnome.org/Projects/libgdata;
|
2016-09-18 20:35:23 +01:00
|
|
|
maintainers = with maintainers; [ raskin lethalman ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
};
|
|
|
|
}
|