mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
ace9b4a23e
It provides the includes/GL/glu.h file.
19 lines
459 B
Nix
19 lines
459 B
Nix
{ stdenv, fetchurl, pkgconfig, mesa }:
|
|
|
|
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 mesa ];
|
|
|
|
meta = {
|
|
description = "OpenGL utility library";
|
|
homepage = http://cgit.freedesktop.org/mesa/glu/;
|
|
license = "bsd"; # SGI-B-2.0, which seems BSD-like
|
|
};
|
|
}
|