add linuxwacom. Now, this is still without the driver for X (even though

I don't know how that has to be used in X)

svn path=/nixpkgs/trunk/; revision=4640
This commit is contained in:
Armijn Hemel
2006-01-31 15:18:27 +00:00
parent 4bae3eca94
commit 0c6fa511b9
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, libX11, libXi}:
stdenv.mkDerivation {
name = "linuxwacom-0.7.2";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/linuxwacom/linuxwacom-0.7.2.tar.bz2;
md5 = "3f6290101d5712a24097243ca9f092ed";
};
buildInputs = [libX11 libXi];
}