exempi: fix build on darwin

main
Mario Rodas 2 years ago
parent dbf2b9152f
commit 3b2a48345c
  1. 6
      pkgs/top-level/all-packages.nix

@ -5655,8 +5655,10 @@ with pkgs;
};
exempi = callPackage ../development/libraries/exempi {
stdenv = if stdenv.isi686 then gcc6Stdenv else gcc9Stdenv;
boost = boost15x;
stdenv = if stdenv.isDarwin then stdenv
else if stdenv.isi686 then gcc6Stdenv
else gcc9Stdenv;
boost = if stdenv.isDarwin then boost else boost15x;
};
execline = skawarePackages.execline;

Loading…
Cancel
Save