forked from mirrors/nixpkgs
Remove linuxwacom: it is not compatible with new xserver
svn path=/nixpkgs/trunk/; revision=21016
This commit is contained in:
parent
64cff1da4e
commit
62bcea0382
|
@ -1,5 +0,0 @@
|
||||||
args: (import ./wacom.nix) (args //
|
|
||||||
{
|
|
||||||
version = "0.8.4-4";
|
|
||||||
hash = "1cydd8906y923llxf9s1fvzb26dbcfvzlgasmlqpa75p98fnnrpz";
|
|
||||||
})
|
|
|
@ -1,5 +0,0 @@
|
||||||
args: (import ./wacom.nix) (args //
|
|
||||||
{
|
|
||||||
version = "0.8.5-12";
|
|
||||||
hash = "0i4dx3gh7f56id5ca60l9s3ypxnwn6gg4w9a6jzkbgzbipknn71k";
|
|
||||||
})
|
|
|
@ -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"
|
|
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -9066,18 +9066,6 @@ let
|
||||||
flex = flex2535;
|
flex = flex2535;
|
||||||
};
|
};
|
||||||
|
|
||||||
linuxwacom = linuxwacom_0_8_5;
|
|
||||||
|
|
||||||
linuxwacom_0_8_5 = import ../misc/linuxwacom/0.8.5.x.nix {
|
|
||||||
inherit fetchurl stdenv ncurses pkgconfig;
|
|
||||||
inherit (xorg) libX11 libXi xproto inputproto xorgserver;
|
|
||||||
};
|
|
||||||
|
|
||||||
linuxwacom_0_8_4 = import ../misc/linuxwacom/0.8.4.x.nix {
|
|
||||||
inherit fetchurl stdenv ncurses pkgconfig;
|
|
||||||
inherit (xorg) libX11 libXi xproto inputproto xorgserver;
|
|
||||||
};
|
|
||||||
|
|
||||||
martyr = import ../development/libraries/martyr {
|
martyr = import ../development/libraries/martyr {
|
||||||
inherit stdenv fetchurl apacheAnt;
|
inherit stdenv fetchurl apacheAnt;
|
||||||
};
|
};
|
||||||
|
|
|
@ -173,7 +173,6 @@ with (import ./release-lib.nix);
|
||||||
libtool_2 = all;
|
libtool_2 = all;
|
||||||
libxml2 = all;
|
libxml2 = all;
|
||||||
libxslt = all;
|
libxslt = all;
|
||||||
linuxwacom = linux;
|
|
||||||
lout = linux;
|
lout = linux;
|
||||||
lsh = linux;
|
lsh = linux;
|
||||||
lsof = linux;
|
lsof = linux;
|
||||||
|
|
Loading…
Reference in a new issue