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 {
|
2015-03-07 19:02:25 +01:00
|
|
|
name = "wacomtablet-2.1.0";
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-07 19:02:25 +01:00
|
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-wacomtablet-2.1.0.tar.xz";
|
|
|
|
sha256 = "17n1p5v2yx517hkqd13pyl3wnrdnh6pfzwf2y2csrfckyndhwk8w";
|
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
|
|
|
};
|
|
|
|
}
|