Tidying up, adding license

svn path=/nixpkgs/trunk/; revision=25707
This commit is contained in:
Cillian de Roiste 2011-01-27 21:19:10 +00:00
parent a393fe50ad
commit a9564ff90b

View file

@ -1,17 +1,18 @@
{ stdenv, fetchurl, libX11, libXi, inputproto, file
, xproto, ncurses, pkgconfig, xorgserver,
libXext, libXrandr, randrproto, libXrender }:
{ stdenv, fetchurl,
file, inputproto, libX11, libXext, libXi, libXrandr, libXrender,
ncurses, pkgconfig, randrproto, xorgserver, xproto }:
stdenv.mkDerivation rec {
name = "xf86-input-wacom-0.10.10";
name = "xf86-input-wacom";
version = "0.10.10";
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/${name}.tar.bz2";
url = "mirror://sourceforge/linuxwacom/${name}-${version}.tar.bz2";
sha256 = "03yggp2ww64va6gmasl0gy0rbfcyb1zlj9kapp9kvhk2j4458fdr";
};
buildInputs = [ libX11 libXi inputproto xproto ncurses pkgconfig xorgserver
file libXext libXrandr libXrender randrproto ];
buildInputs = [ file inputproto libX11 libXext libXi libXrandr libXrender
ncurses pkgconfig randrproto xorgserver xproto ];
preConfigure = ''
ensureDir $out/share/X11/xorg.conf.d
@ -29,6 +30,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.urkud ];
description = "Wacom digitizer driver for X11";
homepage = http://linuxwacom.sourceforge.net;
license = "GPLv2";
platforms = platforms.linux; # Probably, works with other unices as well
};
}