3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/linuxwacom/default.nix
Armijn Hemel 0c6fa511b9 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
2006-01-31 15:18:27 +00:00

11 lines
284 B
Nix

{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];
}