* libdrm updated to 2.0.

svn path=/nixpkgs/trunk/; revision=4569
This commit is contained in:
Eelco Dolstra 2006-01-17 12:42:57 +00:00
parent 57adf342b4
commit 0bb8593bbb
2 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libdrm-1.0.5"; name = "libdrm-2.0";
src = fetchurl { src = fetchurl {
url = http://dri.freedesktop.org/libdrm/libdrm-1.0.5.tar.gz; url = http://dri.freedesktop.org/libdrm/libdrm-2.0.tar.gz;
md5 = "e31257237969d5fc2c9e9eb4ad8110cf"; md5 = "9d1aab104eb757ceeb2c1a6d38d57411";
}; };
} }

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, xlibs}: {stdenv, fetchurl, x11, libXmu, libXi}:
assert stdenv.system == "i686-linux"; assert stdenv.system == "i686-linux";
@ -19,5 +19,5 @@ stdenv.mkDerivation {
}) */ }) */
]; ];
builder = ./builder.sh; builder = ./builder.sh;
buildInputs = [xlibs.xlibs xlibs.libXmu xlibs.libXi]; buildInputs = [x11 libXmu libXi];
} }