Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
529 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
fetchurl,
buildDunePackage,
lib,
}:
buildDunePackage rec {
pname = "bstr";
version = "0.0.2";
minimalOCamlVersion = "4.13";
src = fetchurl {
url = "https://github.com/robur-coop/bstr/releases/download/v${version}/bstr-${version}.tbz";
hash = "sha256-/zvzCBzT014OesTmxGBDB98ZRU++YNDLUZ8uaDK3keM=";
};
meta = {
description = "A simple library for bigstrings";
homepage = "https://git.robur.coop/robur/bstr";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}