Files
2026-05-12 13:28:45 -05:00

28 lines
692 B
Nix

{
lib,
fetchurl,
buildDunePackage,
}:
buildDunePackage (finalAttrs: {
pname = "res";
version = "5.0.2";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/mmottl/res/releases/download/${finalAttrs.version}/res-${finalAttrs.version}.tbz";
hash = "sha256-hQxRETCYxy7ZHah5cg+XHtH3wCj/ofq1VHxsPHu91FU=";
};
doCheck = true;
meta = {
description = "Library for resizable, contiguous datastructures";
homepage = "https://github.com/mmottl/res";
changelog = "https://github.com/mmottl/res/blob/${finalAttrs.version}/CHANGES.md";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ sixstring982 ];
};
})