mesa-glu: add macOS frameworks

- glu needs ApplicationServices
This commit is contained in:
Matthew Bauer
2019-06-04 23:14:59 -04:00
parent 0121da2af1
commit 894644c8e8
2 changed files with 6 additions and 3 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libGL }:
{ stdenv, fetchurl, pkgconfig, libGL, ApplicationServices }:
stdenv.mkDerivation rec {
name = "glu-${version}";
@@ -13,7 +13,8 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libGL ];
propagatedBuildInputs = [ libGL ]
++ stdenv.lib.optional stdenv.isDarwin ApplicationServices;
outputs = [ "out" "dev" ];