1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/mesa-glu/default.nix
Vladimír Čunát ace9b4a23e add glu library from mesa, needed e.g. for SDL
It provides the includes/GL/glu.h file.
2013-01-30 16:43:04 +01:00

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
};
}