Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
702 B
Nix
33 lines
702 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 = [ ];
|
|
};
|
|
}
|