2011-02-13 05:34:37 +01:00
|
|
|
{ stdenv, fetchurl, automoc4, cmake, kdelibs }:
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-02-13 05:34:37 +01:00
|
|
|
name = "wacomtablet-1.2.5";
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-02-13 05:34:37 +01:00
|
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-${name}.tar.gz";
|
2011-01-27 22:47:30 +01:00
|
|
|
sha256 = "11hfab6sqmhvd0m1grc9m9yfi0p7rk0bycj9wqgkgbc8cwgps6sf";
|
|
|
|
};
|
|
|
|
|
2011-02-13 05:34:37 +01:00
|
|
|
buildInputs = [ automoc4 cmake kdelibs ];
|
2011-01-27 22:47:30 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "KDE Wacom graphic tablet configuration tool";
|
|
|
|
license = "GPLv2";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|