Merge pull request #122593 from rmcgibbo/mpir

mpir: fix darwin
This commit is contained in:
Michael Raskin
2021-05-11 16:42:47 +00:00
committed by GitHub

View File

@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "1fvmhrqdjs925hzr2i8bszm50h00gwsh17p2kn2pi51zrxck9xjj";
};
configureFlags = [ "--enable-cxx" "--enable-fat" ];
configureFlags = [ "--enable-cxx" ]
++ lib.optionals stdenv.isLinux [ "--enable-fat" ];
meta = {
inherit version;