Skip to content

Commit

Permalink
Removed cocoa from build inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Nov 17, 2020
1 parent 85aab4b commit b1e981d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NixSupport/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let
pkgs = import "${toString projectPath}/Config/nix/nixpkgs-config.nix" { ihp = ihp; };
ghc = pkgs.haskell.packages.${compiler};
allHaskellPackages = ghc.ghcWithPackages (p: builtins.concatLists [ [p.haskell-language-server] (haskellDeps p) ] );
allNativePackages = builtins.concatLists [ (otherDeps pkgs) [pkgs.postgresql] (if pkgs.stdenv.isDarwin then [pkgs.darwin.apple_sdk.frameworks.Cocoa] else []) ];
allNativePackages = builtins.concatLists [ (otherDeps pkgs) [pkgs.postgresql] (if pkgs.stdenv.isDarwin then [] else []) ];
in
pkgs.stdenv.mkDerivation {
name = "app";
Expand Down

0 comments on commit b1e981d

Please sign in to comment.