1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

coq_8_10: fix CoqIDE on darwin

This commit is contained in:
Vincent Laporte 2019-09-18 11:52:38 +00:00 committed by Vincent Laporte
parent 8dd417eed6
commit 325f89ef19

View file

@ -9,6 +9,7 @@
, ocamlPackages, ncurses
, buildIde ? true
, glib, gnome3, wrapGAppsHook
, darwin
, csdp ? null
, version
}:
@ -105,6 +106,7 @@ self = stdenv.mkDerivation {
++ stdenv.lib.optionals buildIde
(if versionAtLeast "8.10"
then [ ocamlPackages.lablgtk3-sourceview3 glib gnome3.defaultIconTheme wrapGAppsHook ]
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa
else [ ocamlPackages.lablgtk ]);
postPatch = ''