hareThirdParty.hare-xml: init at 0.25.2.0

This commit is contained in:
Nikolay Korotkiy 2026-03-01 15:46:57 +04:00
parent f5c692d0b0
commit 1ae2c4a0a4
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
fetchFromSourcehut,
hareHook,
lib,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hare-xml";
version = "0.25.2.0";
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = "hare-xml";
tag = finalAttrs.version;
hash = "sha256-YAXUt/gLtGgT/4XXwaVaFEkeWMTBxwjUeeHHm8o3QcA=";
};
nativeBuildInputs = [ hareHook ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
doCheck = true;
meta = {
homepage = "https://git.sr.ht/~sircmpwn/hare-xml/";
description = "This package provides XML support for Hare";
license = with lib.licenses; [ mpl20 ];
maintainers = with lib.maintainers; [ sikmir ];
inherit (hareHook.meta) platforms badPlatforms;
};
})

View file

@ -13,5 +13,6 @@ lib.makeScope newScope (
hare-ssh = callPackage ../development/hare-third-party/hare-ssh { };
hare-toml = callPackage ../development/hare-third-party/hare-toml { };
hare-png = callPackage ../development/hare-third-party/hare-png { };
hare-xml = callPackage ../development/hare-third-party/hare-xml { };
}
)