ocamlPackages.ubase: Init at 0.20
This commit is contained in:
28
pkgs/development/ocaml-modules/ubase/default.nix
Normal file
28
pkgs/development/ocaml-modules/ubase/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2087,6 +2087,8 @@ let
|
|||||||
|
|
||||||
### U ###
|
### U ###
|
||||||
|
|
||||||
|
ubase = callPackage ../development/ocaml-modules/ubase { };
|
||||||
|
|
||||||
uchar = callPackage ../development/ocaml-modules/uchar { };
|
uchar = callPackage ../development/ocaml-modules/uchar { };
|
||||||
|
|
||||||
uecc = callPackage ../development/ocaml-modules/uecc { };
|
uecc = callPackage ../development/ocaml-modules/uecc { };
|
||||||
|
|||||||
Reference in New Issue
Block a user