From cc3c1af453f6d7c610be61de03be62a3ba9d6270 Mon Sep 17 00:00:00 2001 From: hashirama Date: Wed, 9 Oct 2024 08:08:00 -0400 Subject: [PATCH] mxml --- ajatt/packages/dictionaries.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/ajatt/packages/dictionaries.scm b/ajatt/packages/dictionaries.scm index 7f77000..81e2071 100644 --- a/ajatt/packages/dictionaries.scm +++ b/ajatt/packages/dictionaries.scm @@ -360,4 +360,30 @@ the popup and sdcv for the dictionary lookup.") (license (list license:expat)))) -goldendict-ng + +(define-public mxml + (package + (name "mxml") + (version "4.0.3") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/michaelrsweet/mxml.git") + (commit "95445118c262d7e9a921c2773b59872fc2eccd16"))) + (sha256 + (base32 "0pi6awl67rh9679wac8bk3x1lkr4c75a790z68gp6b29j6406805")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f )) + (synopsis " Tiny XML library.") + (description + "Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries. Mini-XML only requires a make program and a C99 compatible compiler - GCC works, as do most vendors' C compilers.") + (home-page "https://www.msweet.org/mxml") + (license + (list license:asl2.0)))) + + +mxml