Skip to content

Commit

Permalink
Merge pull request #552 from digitallyinduced/remove-cocoa
Browse files Browse the repository at this point in the history
Removed cocoa from build inputs
  • Loading branch information
mpscholten authored Nov 18, 2020
2 parents b819f41 + b1e981d commit 1e67bc7
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 1e67bc7

Please sign in to comment.