Added synaptics

svn path=/nixpkgs/trunk/; revision=8901
This commit is contained in:
Michael Raskin 2007-06-20 10:30:03 +00:00
parent 0432c3cf1c
commit e342415a12
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, libX11, pkgconfig, xorgserver, libXi, libXext}:
stdenv.mkDerivation {
name = "synaptics-0.14.6";
src = fetchurl {
url = http://web.telia.com/~u89404340/touchpad/files/synaptics-0.14.6.tar.bz2;
md5 = "1102cd575045640a064ab6f9b1e391af";
};
makeFlags="DESTDIR=$out PREFIX=/";
buildInputs = [libX11 pkgconfig xorgserver libXi libXext];
}

View file

@ -3328,6 +3328,12 @@ rec {
inherit fetchurl stdenv;
};
synaptics = import ../misc/synaptics {
inherit fetchurl stdenv pkgconfig;
inherit (xlibs) libX11 libXi libXext;
inherit (xorg) xorgserver;
};
tetex = import ../misc/tex/tetex {
inherit fetchurl stdenv flex bison zlib libpng ncurses ed;
};