5e7c026c22
svn path=/nixpkgs/trunk/; revision=25932
21 lines
621 B
Nix
21 lines
621 B
Nix
{ stdenv, fetchurl, automoc4, cmake, kdelibs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wacomtablet-1.2.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://kde-apps.org/CONTENT/content-files/114856-${name}.tar.gz";
|
|
sha256 = "11hfab6sqmhvd0m1grc9m9yfi0p7rk0bycj9wqgkgbc8cwgps6sf";
|
|
};
|
|
|
|
buildInputs = [ automoc4 cmake kdelibs ];
|
|
|
|
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;
|
|
maintainers = [ maintainers.goibhniu maintainers.urkud ];
|
|
};
|
|
}
|