libgdata: 0.17.9 -> 0.17.10
* Meson! * intiltool -> gettext * multi-outputs * installed tests https://gitlab.gnome.org/GNOME/libgdata/blob/0.17.10/NEWS
This commit is contained in:
@@ -1,20 +1,69 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, json-glib, gcr
|
||||
, gobject-introspection, liboauth, gnome3, p11-kit, openssl, uhttpmock }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, pkgconfig
|
||||
, meson
|
||||
, ninja
|
||||
, vala
|
||||
, gettext
|
||||
, libxml2
|
||||
, glib
|
||||
, json-glib
|
||||
, gcr
|
||||
, gobject-introspection
|
||||
, liboauth
|
||||
, gnome3
|
||||
, p11-kit
|
||||
, openssl
|
||||
, uhttpmock
|
||||
, libsoup
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libgdata";
|
||||
version = "0.17.9";
|
||||
version = "0.17.10";
|
||||
|
||||
outputs = [ "out" "dev" "installedTests" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "0fj54yqxdapdppisqm1xcyrpgcichdmipq0a0spzz6009ikzgi45";
|
||||
sha256 = "04mh2p5x2iidfx0d1cablxbi3hvna8cmlddc1mm4387n0grx3ly1";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool gobject-introspection ];
|
||||
patches = [
|
||||
./installed-tests-path.patch
|
||||
];
|
||||
|
||||
buildInputs = [ gnome3.libsoup libxml2 glib liboauth gcr gnome3.gnome-online-accounts p11-kit openssl uhttpmock ];
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
gobject-introspection
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
vala
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ json-glib ];
|
||||
buildInputs = [
|
||||
gcr
|
||||
glib
|
||||
gnome3.gnome-online-accounts
|
||||
liboauth
|
||||
libsoup
|
||||
libxml2
|
||||
openssl
|
||||
p11-kit
|
||||
uhttpmock
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
json-glib
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dgtk_doc=false"
|
||||
"-Dinstalled_test_bindir=${placeholder ''installedTests''}/libexec"
|
||||
"-Dinstalled_test_datadir=${placeholder ''installedTests''}/share"
|
||||
"-Dinstalled_tests=true"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
@@ -26,7 +75,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "GData API library";
|
||||
homepage = https://wiki.gnome.org/Projects/libgdata;
|
||||
maintainers = with maintainers; [ raskin lethalman ];
|
||||
maintainers = with maintainers; [ raskin lethalman ] ++ gnome3.maintainers;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21Plus;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user