Add gnome3.gnome_settings_daemon

This commit is contained in:
Domen Kožar
2014-01-19 23:15:00 +01:00
parent 1e3289efb4
commit 745472d66a
6 changed files with 78 additions and 43 deletions
@@ -1,18 +1,21 @@
{ stdenv, fetchurl_gnome, glib, pkgconfig, gobjectIntrospection }:
{ stdenv, fetchurl_gnome, glib, pkgconfig, gobjectIntrospection, dbus }:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "json-glib";
major = "0"; minor = "14"; patchlevel = "2"; extension = "xz";
sha256 = "19wlpsbdnm3mq2a6yjpzj0cwrmlkarp2m5x6g63b0r2n7vxaa5mq";
major = "0";
minor = "16";
patchlevel = "2";
extension = "xz";
sha256 = "0b22yw0n87mg7a5lkqw1d7xqnm8qj1bwy0wklv9b2yn29qv7am59";
};
configureflags= " --with-introspection " ;
configureflags= "--with-introspection" ;
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig gobjectIntrospection];
propagatedBuildInputs = [ glib gobjectIntrospection ];
nativeBuildInputs = [ pkgconfig ];
meta = {
homepage = http://live.gnome.org/JsonGlib;