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
@@ -0,0 +1,19 @@
{ fetchurl, stdenv, glib, pkgconfig, udev }:
stdenv.mkDerivation rec {
name = "libwacom-0.7.1";
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
sha256 = "1agdaa1bv5mp4l32qgsw63swnnv0p279jiy9madgw4y3d8d12dwm";
};
buildInputs = [ glib pkgconfig udev ];
meta = with stdenv.lib; {
platforms = platforms.linux;
homepage = http://sourceforge.net/projects/linuxwacom/;
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
};
}