2014-02-18 14:41:15 -08:00
|
|
|
{ stdenv, fetchurl, kdelibs, gettext, xf86_input_wacom }:
|
2011-01-27 13:47:30 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-02 02:33:06 -07:00
|
|
|
name = "wacomtablet-2.0.2";
|
2011-01-27 13:47:30 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-02 02:33:06 -07:00
|
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-wacomtablet-2.0.2.tar.xz";
|
|
|
|
sha256 = "13k5f5xpka5cbgl24a3j9khqcmp96x1vhynn9v558ag6dg9ch2hw";
|
2011-01-27 13:47:30 -08:00
|
|
|
};
|
|
|
|
|
2014-02-18 14:41:15 -08:00
|
|
|
buildInputs = [ kdelibs xf86_input_wacom ];
|
2011-12-16 14:33:28 -08:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2011-01-27 13:47:30 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "KDE Wacom graphic tablet configuration tool";
|
2011-12-16 14:33:28 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2011-01-27 13:47:30 -08:00
|
|
|
homepage = http://kde-apps.org/content/show.php/wacom+tablet?content=114856;
|
|
|
|
platforms = platforms.linux;
|
2011-02-12 20:34:37 -08:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.urkud ];
|
2011-01-27 13:47:30 -08:00
|
|
|
};
|
|
|
|
}
|