Skip to content

Commit 4e1bc40

Browse files
committedSep 10, 2017
fox-1.6: add missing frameworks
(cherry picked from commit b310053)
1 parent cf9c019 commit 4e1bc40

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎pkgs/development/libraries/fox/fox-1.6.nix

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
2-
, libXrandr, mesa, libXft, libXfixes, xinput }:
2+
, libXrandr, mesa, libXft, libXfixes, xinput
3+
, CoreServices }:
34

45
let
56
version = "1.6.49";
@@ -13,8 +14,10 @@ stdenv.mkDerivation rec {
1314
sha256 = "03m9wm8hpzh1i0fxx5mpvjr67384pfm9hn7gzdcq55b4639fqy9n";
1415
};
1516

16-
buildInputs = [ xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
17-
libXft mesa libXfixes xinput ];
17+
buildInputs = [
18+
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
19+
libXft mesa libXfixes xinput
20+
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
1821

1922
doCheck = true;
2023

‎pkgs/top-level/all-packages.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -2041,7 +2041,9 @@ with pkgs;
20412041
inherit (darwin.apple_sdk.frameworks) CoreServices;
20422042
};
20432043

2044-
fox_1_6 = callPackage ../development/libraries/fox/fox-1.6.nix { };
2044+
fox_1_6 = callPackage ../development/libraries/fox/fox-1.6.nix {
2045+
inherit (darwin.apple_sdk.frameworks) CoreServices;
2046+
};
20452047

20462048
fping = callPackage ../tools/networking/fping {};
20472049

0 commit comments

Comments
 (0)
Please sign in to comment.