forked from mirrors/nixpkgs
Adding KDE wacom (graphic tablet) configuration tool
svn path=/nixpkgs/trunk/; revision=25708
This commit is contained in:
parent
a9564ff90b
commit
ff52b21fe8
|
@ -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" {
|
||||
|
|
20
pkgs/desktops/kde-4.5/utils/wacomtablet.nix
Normal file
20
pkgs/desktops/kde-4.5/utils/wacomtablet.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue