mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
16 lines
355 B
Nix
16 lines
355 B
Nix
{stdenv, fetchurl, x11, mesa}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rss-glx-0.8.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/rss-glx_0.8.0.tar.bz2;
|
|
md5 = "d04e909521626a27f9f6d9b5f8a24d6c";
|
|
};
|
|
|
|
buildInputs = [x11 mesa];
|
|
inherit mesa;
|
|
|
|
mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
|
|
}
|