2006-01-27 18:10:26 -08:00
|
|
|
{stdenv, fetchurl, x11, mesa}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-09-29 03:27:20 -07:00
|
|
|
name = "rss-glx-0.8.1";
|
2006-01-27 18:10:26 -08:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2006-10-12 06:50:54 -07:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/rss-glx_0.8.1.tar.bz2;
|
2006-09-29 03:27:20 -07:00
|
|
|
md5 = "a2bdf0e10ee4e89c8975f313c5c0ba6f";
|
2006-01-27 18:10:26 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [x11 mesa];
|
|
|
|
inherit mesa;
|
|
|
|
|
|
|
|
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
|
|
|
|
}
|