Merge pull request #171974 from marsam/fix-exempi-darwin

exempi: fix build on darwin
main
Mario Rodas 2 years ago committed by GitHub
commit 8d8a7c0549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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