1{
2 lib,
3 fetchurl,
4 buildDunePackage,
5}:
6
7buildDunePackage rec {
8 pname = "res";
9 version = "5.0.2";
10
11 minimalOCamlVersion = "4.08";
12
13 src = fetchurl {
14 url = "https://github.com/mmottl/res/releases/download/${version}/res-${version}.tbz";
15 hash = "sha256-hQxRETCYxy7ZHah5cg+XHtH3wCj/ofq1VHxsPHu91FU=";
16 };
17
18 doCheck = true;
19
20 meta = {
21 description = "Library for resizable, contiguous datastructures";
22 homepage = "https://github.com/mmottl/res";
23 changelog = "https://github.com/mmottl/res/blob/${version}/CHANGES.md";
24 license = lib.licenses.lgpl2Plus;
25 maintainers = with lib.maintainers; [ sixstring982 ];
26 };
27}