nixpkgs/pkgs/development/libraries/minixml/default.nix
Stanisław Pitucha 97904d5323 minixml: fix darwin build
The default configuration tries to build an intel+arm version on
darwin-aarch64 which fails, but which we don't need.
Remove the explicit architecture flags to fix the build.
2023-03-21 13:30:37 +11:00

29 lines
705 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "mxml";
version = "3.3.1";
src = fetchFromGitHub {
owner = "michaelrsweet";
repo = "mxml";
rev = "v${version}";
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; {
description = "A small XML library";
homepage = "https://www.msweet.org/mxml/";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.goibhniu ];
};
}