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