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

25 lines
648 B
Nix
Raw Normal View History

2014-05-08 11:34:51 +00:00
{ stdenv, fetchurlGnome, glib, pkgconfig, gobjectIntrospection, dbus }:
stdenv.mkDerivation rec {
name = src.pkgname;
2014-05-08 11:34:51 +00:00
src = fetchurlGnome {
project = "json-glib";
2014-01-19 22:14:11 +00:00
major = "0";
minor = "16";
patchlevel = "2";
extension = "xz";
sha256 = "0b22yw0n87mg7a5lkqw1d7xqnm8qj1bwy0wklv9b2yn29qv7am59";
};
2014-01-19 22:14:11 +00:00
configureflags= "--with-introspection" ;
2014-01-19 22:14:11 +00:00
propagatedBuildInputs = [ glib gobjectIntrospection ];
nativeBuildInputs = [ pkgconfig ];
meta = {
homepage = http://live.gnome.org/JsonGlib;
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
};
}