2011-12-16 23:33:28 +01:00
|
|
|
{ stdenv, fetchurl, kdelibs, gettext }:
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-12-16 23:33:28 +01:00
|
|
|
name = "wacomtablet-1.3.5";
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-12-16 23:33:28 +01:00
|
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-wacomtablet-v1.3.5.tar.bz2";
|
|
|
|
sha256 = "0dgsp3izx2v44f6j8mhxc6zybjn5sj9038w6b4v2fgix47fri0ja";
|
2011-01-27 22:47:30 +01:00
|
|
|
};
|
|
|
|
|
2011-12-16 23:33:28 +01:00
|
|
|
buildInputs = [ kdelibs ];
|
|
|
|
|
|
|
|
buildNativeInputs = [ 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
|
|
|
};
|
|
|
|
}
|