mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Tidying up, adding license
svn path=/nixpkgs/trunk/; revision=25707
This commit is contained in:
parent
a393fe50ad
commit
a9564ff90b
1 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue