summary refs log tree commit diff
path: root/pkgs/development/libraries/freeglut/default.nix
blob: 73e7e2ccce5d0636ed47940b7dd39178e2d593d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, lib, fetchurl, libXi, libXrandr, libXxf86vm, mesa, x11, autoreconfHook }:

let version = "2.8.1";
in stdenv.mkDerivation {
  name = "freeglut-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
    sha256 = "16lrxxxd9ps9l69y3zsw6iy0drwjsp6m26d1937xj71alqk6dr6x";
  };

  buildInputs = [
    libXi libXrandr libXxf86vm mesa x11
  ] ++ lib.optionals stdenv.isDarwin [
    autoreconfHook
  ];

  postPatch = lib.optionalString stdenv.isDarwin ''
    substituteInPlace Makefile.am --replace \
      "SUBDIRS = src include progs doc" \
      "SUBDIRS = src include doc"
  '';

  configureFlags = [ "--enable-warnings" ];

  # patches = [ ./0001-remove-typedefs-now-living-in-mesa.patch ];
}