9e0a642955
svn path=/nixpkgs/branches/stdenv-updates/; revision=10159
14 lines
309 B
Nix
14 lines
309 B
Nix
{stdenv, fetchurl, x11, mesa}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "freeglut-2.4.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/freeglut/freeglut-2.4.0.tar.gz;
|
|
sha256 = "0lmhh5p19rw4wisr0jsl7nsa2hxdaasj0vxk5ri83crhp982v7r6";
|
|
};
|
|
|
|
buildInputs = [x11 mesa];
|
|
patches = ./freeglut-gcc-4.2.patch;
|
|
}
|