3
0
Fork 0
forked from mirrors/nixpkgs

* Added libdrm, required by the X Server.

svn path=/nixpkgs/trunk/; revision=4184
This commit is contained in:
Eelco Dolstra 2005-11-01 20:27:57 +00:00
parent 1d1d38a3b6
commit 018da5fbc2
2 changed files with 17 additions and 0 deletions

View file

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

View file

@ -989,6 +989,14 @@ rec {
inherit fetchurl stdenv pkgconfig freetype expat;
};
# Xaw3d = import ../development/libraries/Xaw3d {
# inherit fetchurl stdenv;
# };
libdrm = import ../development/libraries/libdrm {
inherit fetchurl stdenv;
};
mesa = (import ../development/libraries/mesa) {
inherit fetchurl stdenv xlibs;
};