* X.org 7.5.

svn path=/nixpkgs/branches/xorg-7.5/; revision=18034
This commit is contained in:
Eelco Dolstra
2009-10-29 17:56:10 +00:00
parent e9a6fc3bc1
commit 28d718aceb
9 changed files with 926 additions and 1089 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, pthread_stubs}:
{stdenv, fetchurl, pkgconfig, libpthreadstubs}:
stdenv.mkDerivation rec {
name = "libdrm-2.4.15";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1pm7iddv3yjwvqmlbdmj9m55bmkfcfzq0wvqpgx4gkmdjfd8kzxw";
};
buildInputs = [ pkgconfig pthread_stubs ];
buildInputs = [ pkgconfig libpthreadstubs ];
meta = {
homepage = http://dri.freedesktop.org/libdrm/;

View File

@@ -1,15 +0,0 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libpthread-stubs-0.3";
src = fetchurl {
url = "http://xcb.freedesktop.org/dist/${name}.tar.bz2";
sha256 = "0raxl73kmviqinp00bfa025d0j4vmfjjcvfn754mi60mw48swk80";
};
meta = {
homepage = http://xcb.freedesktop.org/;
license = "bsd";
};
}