2006-01-28 03:10:26 +01:00
|
|
|
{stdenv, fetchurl, x11, mesa}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-09-29 12:27:20 +02:00
|
|
|
name = "rss-glx-0.8.1";
|
2006-01-28 03:10:26 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-08-27 15:01:33 +02:00
|
|
|
url = mirror://sourceforge/rss-glx/rss-glx_0.8.1.tar.bz2;
|
2006-09-29 12:27:20 +02:00
|
|
|
md5 = "a2bdf0e10ee4e89c8975f313c5c0ba6f";
|
2006-01-28 03:10:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [x11 mesa];
|
|
|
|
inherit mesa;
|
|
|
|
|
|
|
|
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
|
|
|
|
}
|