mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
hareThirdParty.hare-xml: init at 0.25.2.0
This commit is contained in:
parent
f5c692d0b0
commit
1ae2c4a0a4
2 changed files with 33 additions and 0 deletions
32
pkgs/development/hare-third-party/hare-xml/default.nix
vendored
Normal file
32
pkgs/development/hare-third-party/hare-xml/default.nix
vendored
Normal 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;
|
||||
};
|
||||
})
|
||||
|
|
@ -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 { };
|
||||
}
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue