* Add libXtst and recordext from xlibs CVS.

svn path=/nixpkgs/trunk/; revision=4033
This commit is contained in:
Eelco Dolstra 2005-10-08 15:32:27 +00:00
parent 7112b86997
commit f5a877c2a6
3 changed files with 26 additions and 0 deletions

View File

@ -98,4 +98,11 @@ rec {
inherit stdenv libX11 libXt freetype fontconfig libXft libXext;
};
recordext = (import ./recordext) {
inherit fetchurl stdenv;
};
libXtst = (import ./libXtst) {
inherit fetchurl stdenv pkgconfig libX11 libXext recordext libXtrans;
};
}

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, libX11, libXext, recordext, libXtrans}:
stdenv.mkDerivation {
name = "libXtst-6.2.2-cvs";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/libXtst-6.2.2.tar.bz2;
md5 = "6ee58bdcb151f1eccc761262f737e7d3";
};
buildInputs = [pkgconfig libX11 libXext recordext libXtrans];
}

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "recordext-1.13-cvs";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/recordext-1.13.tar.bz2;
md5 = "dcb2519a76ce238507e777bd79b67ab5";
};
}