Files
nixpkgs/pkgs/development/ocaml-modules/bstr/default.nix
2026-01-21 17:22:39 -06:00

25 lines
561 B
Nix

{
fetchurl,
buildDunePackage,
lib,
}:
buildDunePackage (finalAttrs: {
pname = "bstr";
version = "0.0.2";
minimalOCamlVersion = "4.13";
src = fetchurl {
url = "https://github.com/robur-coop/bstr/releases/download/v${finalAttrs.version}/bstr-${finalAttrs.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 ];
};
})