Remove linuxwacom: it is not compatible with new xserver

svn path=/nixpkgs/trunk/; revision=21016
This commit is contained in:
Yury G. Kudryashov
2010-04-11 21:03:43 +00:00
parent 64cff1da4e
commit 62bcea0382
6 changed files with 0 additions and 58 deletions
-5
View File
@@ -1,5 +0,0 @@
args: (import ./wacom.nix) (args //
{
version = "0.8.4-4";
hash = "1cydd8906y923llxf9s1fvzb26dbcfvzlgasmlqpa75p98fnnrpz";
})
-5
View File
@@ -1,5 +0,0 @@
args: (import ./wacom.nix) (args //
{
version = "0.8.5-12";
hash = "0i4dx3gh7f56id5ca60l9s3ypxnwn6gg4w9a6jzkbgzbipknn71k";
})
-3
View File
@@ -1,3 +0,0 @@
# udev rule to create /dev/input/wacomN for wacom tablets
KERNEL="event*", SYSFS{manufacturer}="WACOM", NAME="input/%k", SYMLINK="input/wacom%e"
-32
View File
@@ -1,32 +0,0 @@
{ stdenv, fetchurl, libX11, libXi, inputproto
, xproto, ncurses, pkgconfig, xorgserver, version, hash }:
stdenv.mkDerivation rec {
name = "linuxwacom-${version}";
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/${name}.tar.bz2";
sha256 = hash;
};
buildInputs = [ libX11 libXi inputproto xproto ncurses pkgconfig xorgserver ];
preConfigure = ''
./configure --enable-wacomdrv --prefix=$out \
--with-xlib --with-xorg-sdk --enable-wacdump --enable-xsetwacom \
--with-xmoduledir=$out/lib/xorg/modules/input
mv configure configure.removed
'';
postInstall =
''
ensureDir $out/etc/udev/rules.d
cp ${./10-wacom.rules} $out/etc/udev/rules.d/10-wacom.rules
'';
meta = {
maintainers = with stdenv.lib.maintainers; [raskin urkud];
description = "Wacom digitizer driver for X11";
homepage = http://linuxwacom.sourceforge.net;
};
}