mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
racket: unbreak on darwin
This commit is contained in:
parent
a34f8c3672
commit
6124241ef1
@ -9,7 +9,6 @@
|
|||||||
, libGL
|
, libGL
|
||||||
, libGLU
|
, libGLU
|
||||||
, libjpeg
|
, libjpeg
|
||||||
, xorg
|
|
||||||
, ncurses
|
, ncurses
|
||||||
, libpng, libtool, mpfr, openssl, pango, poppler
|
, libpng, libtool, mpfr, openssl, pango, poppler
|
||||||
, readline, sqlite
|
, readline, sqlite
|
||||||
@ -25,7 +24,7 @@ let
|
|||||||
fontDirectories = [ freefont_ttf ];
|
fontDirectories = [ freefont_ttf ];
|
||||||
};
|
};
|
||||||
|
|
||||||
libPath = lib.makeLibraryPath [
|
libPath = lib.makeLibraryPath ([
|
||||||
cairo
|
cairo
|
||||||
fontconfig
|
fontconfig
|
||||||
glib
|
glib
|
||||||
@ -33,8 +32,6 @@ let
|
|||||||
gtk3
|
gtk3
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
libedit
|
libedit
|
||||||
libGL
|
|
||||||
libGLU
|
|
||||||
libjpeg
|
libjpeg
|
||||||
libpng
|
libpng
|
||||||
mpfr
|
mpfr
|
||||||
@ -44,7 +41,10 @@ let
|
|||||||
poppler
|
poppler
|
||||||
readline
|
readline
|
||||||
sqlite
|
sqlite
|
||||||
];
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||||
|
libGL
|
||||||
|
libGLU
|
||||||
|
]);
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user