68be54c8e2
Since mesa-9.x, upstream has separated mesa and glu. @peti suggested using buildEnv to create a mesa environment that acts like old mesa, which is what this commit does.
20 lines
502 B
Nix
20 lines
502 B
Nix
{ stdenv, fetchurl, pkgconfig, mesa_noglu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glu-9.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/glu/${name}.tar.bz2";
|
|
sha256 = "04nzlil3a6fifcmb95iix3yl8mbxdl66b99s62yzq8m7g79x0yhz";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ mesa_noglu ];
|
|
|
|
meta = {
|
|
description = "OpenGL utility library";
|
|
homepage = http://cgit.freedesktop.org/mesa/glu/;
|
|
license = "bsd"; # SGI-B-2.0, which seems BSD-like
|
|
};
|
|
}
|