graphviz: add darwin frameworks
This commit is contained in:
parent
0300418a69
commit
6bdecbf1ba
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
||||||
, yacc, libtool, fontconfig, pango, gd, xorg, gts, gettext, cairo
|
, yacc, libtool, fontconfig, pango, gd, xorg, gts, gettext, cairo
|
||||||
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||||||
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
||||||
pango gd gts
|
pango gd gts
|
||||||
] ++ stdenv.lib.optionals (xorg != null) [ xorg.xlibsWrapper xorg.libXrender ]
|
] ++ stdenv.lib.optionals (xorg != null) [ xorg.xlibsWrapper xorg.libXrender ]
|
||||||
++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
|
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices gettext ];
|
||||||
|
|
||||||
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo";
|
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo";
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat
|
||||||
, yacc, libtool, fontconfig, pango, gd, xorg, gts, libdevil, gettext, cairo
|
, yacc, libtool, fontconfig, pango, gd, xorg, gts, libdevil, gettext, cairo
|
||||||
, flex
|
, flex
|
||||||
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -20,9 +21,9 @@ stdenv.mkDerivation rec {
|
|||||||
[ pkgconfig libpng libjpeg expat yacc libtool fontconfig gd gts libdevil flex pango
|
[ pkgconfig libpng libjpeg expat yacc libtool fontconfig gd gts libdevil flex pango
|
||||||
] ++ stdenv.lib.optionals (xorg != null)
|
] ++ stdenv.lib.optionals (xorg != null)
|
||||||
(with xorg; [ xlibsWrapper libXrender libXaw libXpm ])
|
(with xorg; [ xlibsWrapper libXrender libXaw libXpm ])
|
||||||
++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
|
++ stdenv.lib.optionals (stdenv.isDarwin) [ ApplicationServices gettext ];
|
||||||
|
|
||||||
CPPFLAGS = stdenv.lib.optionalString (xorg != null && stdenv.system == "x86_64-darwin")
|
CPPFLAGS = stdenv.lib.optionalString (xorg != null && stdenv.isDarwin)
|
||||||
"-I${cairo.dev}/include/cairo";
|
"-I${cairo.dev}/include/cairo";
|
||||||
|
|
||||||
configureFlags = stdenv.lib.optional (xorg == null) "--without-x";
|
configureFlags = stdenv.lib.optional (xorg == null) "--without-x";
|
||||||
|
@ -1988,9 +1988,11 @@ in
|
|||||||
pythonPackages = pypyPackages;
|
pythonPackages = pypyPackages;
|
||||||
};
|
};
|
||||||
|
|
||||||
graphviz = callPackage ../tools/graphics/graphviz { };
|
graphviz = callPackage ../tools/graphics/graphviz {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
|
};
|
||||||
|
|
||||||
graphviz-nox = callPackage ../tools/graphics/graphviz {
|
graphviz-nox = graphviz.override {
|
||||||
xorg = null;
|
xorg = null;
|
||||||
libdevil = libdevil-nox;
|
libdevil = libdevil-nox;
|
||||||
};
|
};
|
||||||
@ -2005,7 +2007,9 @@ in
|
|||||||
* that do want 2.32 but not 2.0 or 2.36. Please give a day's notice for
|
* that do want 2.32 but not 2.0 or 2.36. Please give a day's notice for
|
||||||
* objections before removal. The feature is libgraph.
|
* objections before removal. The feature is libgraph.
|
||||||
*/
|
*/
|
||||||
graphviz_2_32 = callPackage ../tools/graphics/graphviz/2.32.nix { };
|
graphviz_2_32 = callPackage ../tools/graphics/graphviz/2.32.nix {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
|
};
|
||||||
|
|
||||||
grin = callPackage ../tools/text/grin { };
|
grin = callPackage ../tools/text/grin { };
|
||||||
ripgrep = callPackage ../tools/text/ripgrep { };
|
ripgrep = callPackage ../tools/text/ripgrep { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user