1{
2 fetchurl,
3 buildDunePackage,
4 lib,
5}:
6
7buildDunePackage rec {
8 pname = "bstr";
9 version = "0.0.2";
10
11 minimalOCamlVersion = "4.13";
12
13 src = fetchurl {
14 url = "https://github.com/robur-coop/bstr/releases/download/v${version}/bstr-${version}.tbz";
15 hash = "sha256-/zvzCBzT014OesTmxGBDB98ZRU++YNDLUZ8uaDK3keM=";
16 };
17
18 meta = {
19 description = "A simple library for bigstrings";
20 homepage = "https://git.robur.coop/robur/bstr";
21 license = lib.licenses.mit;
22 maintainers = [ lib.maintainers.vbgl ];
23 };
24}