Skip to content

Commit

Permalink
fox-1.6: add missing frameworks
Browse files Browse the repository at this point in the history
(cherry picked from commit b310053)
  • Loading branch information
LnL7 committed Sep 10, 2017
1 parent cf9c019 commit 4e1bc40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/libraries/fox/fox-1.6.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
, libXrandr, mesa, libXft, libXfixes, xinput }:
, libXrandr, mesa, libXft, libXfixes, xinput
, CoreServices }:

let
version = "1.6.49";
Expand All @@ -13,8 +14,10 @@ stdenv.mkDerivation rec {
sha256 = "03m9wm8hpzh1i0fxx5mpvjr67384pfm9hn7gzdcq55b4639fqy9n";
};

buildInputs = [ xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
libXft mesa libXfixes xinput ];
buildInputs = [
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
libXft mesa libXfixes xinput
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;

doCheck = true;

Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -2041,7 +2041,9 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreServices;
};

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

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

Expand Down

0 comments on commit 4e1bc40

Please sign in to comment.