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

22 lines
634 B
Nix

{ stdenv, fetchurl_gnome, glib, pkgconfig, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "json-glib";
major = "0"; minor = "14"; patchlevel = "2"; extension = "xz";
sha256 = "19wlpsbdnm3mq2a6yjpzj0cwrmlkarp2m5x6g63b0r2n7vxaa5mq";
};
configureflags= " --with-introspection " ;
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig gobjectIntrospection];
meta = {
homepage = http://live.gnome.org/JsonGlib;
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
};
}