ocamlPackages.ubase: Init at 0.20 (#451932)

This commit is contained in:
Vincent Laporte
2025-10-16 13:41:07 +00:00
committed by GitHub
2 changed files with 30 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -2091,6 +2091,8 @@ let
### U ###
ubase = callPackage ../development/ocaml-modules/ubase { };
uchar = callPackage ../development/ocaml-modules/uchar { };
uecc = callPackage ../development/ocaml-modules/uecc { };