mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
25 lines
561 B
Nix
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 ];
|
|
};
|
|
})
|