33 lines
701 B
Nix
33 lines
701 B
Nix
{
|
|
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 = lib.licenses.mpl20;
|
|
maintainers = with lib.maintainers; [ sikmir ];
|
|
inherit (hareHook.meta) platforms badPlatforms;
|
|
};
|
|
})
|