* 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";
};
}