tree: fix compilation on darwin
This commit is contained in:
parent
88eff1efac
commit
9b409f2cae
@ -8259,7 +8259,13 @@ let
|
|||||||
|
|
||||||
trayer = callPackage ../applications/window-managers/trayer { };
|
trayer = callPackage ../applications/window-managers/trayer { };
|
||||||
|
|
||||||
tree = callPackage ../tools/system/tree { };
|
tree = callPackage ../tools/system/tree {
|
||||||
|
# use gccApple to compile on darwin as the configure script adds a
|
||||||
|
# -no-cpp-precomp flag, which is not compatible with the default gcc
|
||||||
|
stdenv = if stdenv.isDarwin
|
||||||
|
then stdenvAdapters.overrideGCC stdenv gccApple
|
||||||
|
else stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
tribler = callPackage ../applications/networking/p2p/tribler { };
|
tribler = callPackage ../applications/networking/p2p/tribler { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user