mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
650 B
Nix
25 lines
650 B
Nix
{ stdenv, fetchurl_gnome, glib, pkgconfig, gobjectIntrospection, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = src.pkgname;
|
|
|
|
src = fetchurl_gnome {
|
|
project = "json-glib";
|
|
major = "0";
|
|
minor = "16";
|
|
patchlevel = "2";
|
|
extension = "xz";
|
|
sha256 = "0b22yw0n87mg7a5lkqw1d7xqnm8qj1bwy0wklv9b2yn29qv7am59";
|
|
};
|
|
|
|
configureflags= "--with-introspection" ;
|
|
|
|
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";
|
|
};
|
|
}
|