27 lines
757 B
Nix
27 lines
757 B
Nix
{ stdenv, fetchurlGnome, glib, pkgconfig, gobjectIntrospection, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = src.pkgname;
|
|
|
|
src = fetchurlGnome {
|
|
project = "json-glib";
|
|
major = "1";
|
|
minor = "0";
|
|
patchlevel = "2";
|
|
extension = "xz";
|
|
sha256 = "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a";
|
|
};
|
|
|
|
configureflags= "--with-introspection" ;
|
|
|
|
propagatedBuildInputs = [ glib gobjectIntrospection ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://live.gnome.org/JsonGlib;
|
|
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
|
|
license = licenses.lgpl2;
|
|
maintainers = with maintainers; [ lethalman ];
|
|
};
|
|
}
|