blob: 4d06613f1de8eec3c2ccbaac4d7f28881697719f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ 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 = "Small XML library";
homepage = "https://www.msweet.org/mxml/";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.goibhniu ];
};
}
|