2014-05-08 12:34:51 +01:00
|
|
|
{ stdenv, fetchurlGnome, glib, pkgconfig, gobjectIntrospection, dbus }:
|
2010-09-27 12:18:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-11-07 16:48:27 +00:00
|
|
|
name = src.pkgname;
|
2010-09-27 12:18:28 +01:00
|
|
|
|
2014-05-08 12:34:51 +01:00
|
|
|
src = fetchurlGnome {
|
2011-11-07 16:48:27 +00:00
|
|
|
project = "json-glib";
|
2014-05-19 09:55:16 +01:00
|
|
|
major = "1";
|
|
|
|
minor = "0";
|
2014-09-02 11:58:06 +01:00
|
|
|
patchlevel = "2";
|
2014-01-19 22:14:11 +00:00
|
|
|
extension = "xz";
|
2014-09-02 11:58:06 +01:00
|
|
|
sha256 = "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a";
|
2010-09-27 12:18:28 +01:00
|
|
|
};
|
|
|
|
|
2014-01-19 22:14:11 +00:00
|
|
|
configureflags= "--with-introspection" ;
|
2013-12-12 18:41:51 +00:00
|
|
|
|
2014-01-19 22:14:11 +00:00
|
|
|
propagatedBuildInputs = [ glib gobjectIntrospection ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2010-09-27 12:18:28 +01:00
|
|
|
|
2014-05-19 09:55:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-27 12:18:28 +01:00
|
|
|
homepage = http://live.gnome.org/JsonGlib;
|
|
|
|
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
|
2014-05-19 09:55:16 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ lethalman ];
|
2010-09-27 12:18:28 +01:00
|
|
|
};
|
|
|
|
}
|