2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, fetchurl, glib, meson, ninja, pkgconfig, gettext
|
|
|
|
, gobject-introspection, fixDarwinDylibNames, gnome3
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "json-glib";
|
|
|
|
version = "1.4.4";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
|
|
sha256 = "0ixwyis47v5bkx6h8a1iqlw3638cxcv57ivxv4gw2gaig51my33j";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib ];
|
2020-11-12 09:05:59 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection glib ]
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/JsonGlib";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ lethalman ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|