Skip to content

Commit

Permalink
Merge pull request #222281 from viraptor/minixml-darwin
Browse files Browse the repository at this point in the history
minixml: fix darwin build
  • Loading branch information
viraptor authored Mar 21, 2023
2 parents 0697e87 + 97904d5 commit 13781bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/libraries/minixml/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "sha256-l7GUA+vlSECi/72eU3Y9COpGtLTRh3vYcHUi+uRkCn8=";
};

# remove the -arch flags which are set by default in the build
configureFlags = lib.optionals stdenv.isDarwin [
"--with-archflags=\"-mmacosx-version-min=10.14\""
];

enableParallelBuilding = true;

meta = with lib; {
Expand Down

0 comments on commit 13781bf

Please sign in to comment.