ocamlPackages.ubase: Init at 0.20

This commit is contained in:
Florian RICHER
2025-10-14 13:44:53 +02:00
parent 6fe1b9adfe
commit c22b76d760
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
buildDunePackage,
fetchFromGitHub,
lib,
}:
buildDunePackage rec {
pname = "ubase";
version = "0.20";
minimalOCamlVersion = "4.14.0";
src = fetchFromGitHub {
owner = "sanette";
repo = "ubase";
tag = version;
sha256 = "sha256-zmYjWEk0r1h87RczCJu2tYlS79F/pAiBt16BplPmA7c=";
};
doCheck = true;
meta = {
description = "Remove accents from utf8 strings";
license = lib.licenses.gpl3;
homepage = "https://github.com/sanette/ubase";
maintainers = with lib.maintainers; [ mrdev023 ];
};
}

View File

@@ -2087,6 +2087,8 @@ let
### U ###
ubase = callPackage ../development/ocaml-modules/ubase { };
uchar = callPackage ../development/ocaml-modules/uchar { };
uecc = callPackage ../development/ocaml-modules/uecc { };