25 lines
529 B
Nix
25 lines
529 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|