3
0
Fork 0
forked from mirrors/nixpkgs

Adding KDE wacom (graphic tablet) configuration tool

svn path=/nixpkgs/trunk/; revision=25708
This commit is contained in:
Cillian de Roiste 2011-01-27 21:47:30 +00:00
parent a9564ff90b
commit ff52b21fe8
2 changed files with 21 additions and 0 deletions

View file

@ -140,6 +140,7 @@ recurseIntoAttrs rec {
printer_applet = callPackage ./utils/printer-applet.nix { };
superkaramba = callPackage ./utils/superkaramba.nix { };
sweeper = callPackage ./utils/sweeper.nix { };
wacomtablet = callPackage ./utils/wacomtablet.nix { };
};
kdewebdev = combinePkgs "kdewebdev" {

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, automoc4, cmake, kdelibs, qt4 }:
stdenv.mkDerivation rec {
name = "wacomtablet";
version = "1.2.5";
src = fetchurl {
url = "http://kde-apps.org/CONTENT/content-files/114856-${name}-${version}.tar.gz";
sha256 = "11hfab6sqmhvd0m1grc9m9yfi0p7rk0bycj9wqgkgbc8cwgps6sf";
};
buildInputs = [ automoc4 cmake kdelibs qt4 ];
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;
};
}