mesa-glu: add macOS frameworks
- glu needs ApplicationServices
This commit is contained in:
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user