2015-09-27 16:11:01 +01:00
|
|
|
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
|
|
|
|
, kdelibs, xf86_input_wacom }:
|
2011-01-27 21:47:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-07 18:02:25 +00:00
|
|
|
name = "wacomtablet-2.1.0";
|
2011-01-27 21:47:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-03-07 18:02:25 +00:00
|
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-wacomtablet-2.1.0.tar.xz";
|
|
|
|
sha256 = "17n1p5v2yx517hkqd13pyl3wnrdnh6pfzwf2y2csrfckyndhwk8w";
|
2011-01-27 21:47:30 +00:00
|
|
|
};
|
|
|
|
|
2014-02-18 22:41:15 +00:00
|
|
|
buildInputs = [ kdelibs xf86_input_wacom ];
|
2011-12-16 22:33:28 +00:00
|
|
|
|
2015-09-27 16:11:01 +01:00
|
|
|
nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ];
|
2011-01-27 21:47:30 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "KDE Wacom graphic tablet configuration tool";
|
2011-12-16 22:33:28 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2011-01-27 21:47:30 +00:00
|
|
|
homepage = http://kde-apps.org/content/show.php/wacom+tablet?content=114856;
|
|
|
|
platforms = platforms.linux;
|
2011-02-13 04:34:37 +00:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.urkud ];
|
2011-01-27 21:47:30 +00:00
|
|
|
};
|
|
|
|
}
|