1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/development/libraries/json-glib/default.nix

24 lines
741 B
Nix
Raw Normal View History

2015-04-05 06:22:12 +01:00
{ stdenv, fetchurl, glib, pkgconfig, gobjectIntrospection, dbus }:
stdenv.mkDerivation rec {
2015-04-05 06:22:12 +01:00
name = "json-glib-${minVer}.2";
minVer = "1.0";
2015-04-05 06:22:12 +01:00
src = fetchurl {
url = "mirror://gnome/sources/json-glib/${minVer}/${name}.tar.xz";
2014-09-02 11:58:06 +01:00
sha256 = "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a";
};
2015-04-05 06:22:12 +01: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 ];
};
}