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

27 lines
757 B
Nix
Raw Normal View History

2014-05-08 12:34:51 +01:00
{ stdenv, fetchurlGnome, glib, pkgconfig, gobjectIntrospection, dbus }:
stdenv.mkDerivation rec {
name = src.pkgname;
2014-05-08 12:34:51 +01:00
src = fetchurlGnome {
project = "json-glib";
2014-05-19 09:55:16 +01:00
major = "1";
minor = "0";
patchlevel = "0";
2014-01-19 22:14:11 +00:00
extension = "xz";
2014-05-19 09:55:16 +01:00
sha256 = "dbf558d2da989ab84a27e4e13daa51ceaa97eb959c2c2f80976c9322a8f4cdde";
};
2014-01-19 22:14:11 +00:00
configureflags= "--with-introspection" ;
2014-01-19 22:14:11 +00:00
propagatedBuildInputs = [ glib gobjectIntrospection ];
nativeBuildInputs = [ pkgconfig ];
2014-05-19 09:55:16 +01:00
meta = with stdenv.lib; {
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 ];
};
}