nixpkgs/pkgs/development/libraries/json-glib/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-09-26 02:56:02 +00:00
{ stdenv, fetchurl, glib, meson, ninja, pkgconfig, gettext
, gobject-introspection, fixDarwinDylibNames, gnome3
}:
2018-05-31 17:14:38 +00:00
let
pname = "json-glib";
2018-09-26 02:56:02 +00:00
version = "1.4.4";
2018-05-31 17:14:38 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
2015-04-05 05:22:12 +00:00
src = fetchurl {
2018-05-31 17:14:38 +00:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2018-09-26 02:56:02 +00:00
sha256 = "0ixwyis47v5bkx6h8a1iqlw3638cxcv57ivxv4gw2gaig51my33j";
};
2017-10-12 21:30:40 +00:00
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection glib ]
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
2016-12-09 14:47:12 +00:00
outputs = [ "out" "dev" ];
2017-10-12 21:30:40 +00:00
doCheck = true;
2018-05-31 17:14:38 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
2014-05-19 08:55:16 +00:00
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";
2014-05-19 08:55:16 +00:00
license = licenses.lgpl2;
maintainers = with maintainers; [ lethalman ];
platforms = with platforms; unix;
};
}