2014-01-19 23:14:11 +01:00
|
|
|
{ stdenv, fetchurl_gnome, glib, pkgconfig, gobjectIntrospection, dbus }:
|
2010-09-27 13:18:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-11-07 17:48:27 +01:00
|
|
|
name = src.pkgname;
|
2010-09-27 13:18:28 +02:00
|
|
|
|
2011-11-07 17:48:27 +01:00
|
|
|
src = fetchurl_gnome {
|
|
|
|
project = "json-glib";
|
2014-01-19 23:14:11 +01:00
|
|
|
major = "0";
|
|
|
|
minor = "16";
|
|
|
|
patchlevel = "2";
|
|
|
|
extension = "xz";
|
|
|
|
sha256 = "0b22yw0n87mg7a5lkqw1d7xqnm8qj1bwy0wklv9b2yn29qv7am59";
|
2010-09-27 13:18:28 +02:00
|
|
|
};
|
|
|
|
|
2014-01-19 23:14:11 +01:00
|
|
|
configureflags= "--with-introspection" ;
|
2013-12-12 19:41:51 +01:00
|
|
|
|
2014-01-19 23:14:11 +01:00
|
|
|
propagatedBuildInputs = [ glib gobjectIntrospection ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2010-09-27 13:18:28 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://live.gnome.org/JsonGlib;
|
|
|
|
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
|
|
|
|
};
|
|
|
|
}
|