7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
28 lines
695 B
Nix
28 lines
695 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.hostPlatform.isDarwin [
|
|
"--with-archflags=\"-mmacosx-version-min=10.14\""
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Small XML library";
|
|
homepage = "https://www.msweet.org/mxml/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|