hareThirdParty.hare-json: 0-unstable-2024-04-19 → 0.26.0.0

This commit is contained in:
Nikolay Korotkiy
2026-03-01 15:17:45 +04:00
parent 02a0389205
commit acde0c2cff

View File

@@ -1,20 +1,19 @@
{
fetchFromSourcehut,
hareHook,
harec,
lib,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hare-json";
version = "0-unstable-2024-04-19";
version = "0.26.0.0";
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = "hare-json";
rev = "b6aeae96199607a1f3b4d437d5c99f821bd6a6b6";
hash = "sha256-mgUzHGXbaJdWm7qUn7mWdDUQBgbEjh42O+Lo0ok80Wo=";
tag = finalAttrs.version;
hash = "sha256-vAT10QGFwazM5PYLQpW0ebFGa2sScXWM87jzI+m4/eM=";
};
nativeBuildInputs = [ hareHook ];
@@ -28,6 +27,6 @@ stdenv.mkDerivation (finalAttrs: {
description = "This package provides JSON support for Hare";
license = with lib.licenses; [ mpl20 ];
maintainers = with lib.maintainers; [ starzation ];
inherit (harec.meta) platforms badPlatforms;
inherit (hareHook.meta) platforms badPlatforms;
};
})