ocamlPackages.otfed: init at 0.3.1

This commit is contained in:
Vincent Laporte 2023-12-26 16:47:06 +01:00 committed by Vincent Laporte
parent 3cb442f494
commit c58d90c2cf
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, buildDunePackage
, fetchFromGitHub
, base
, ppx_deriving
, ppx_inline_test
, uutf
, alcotest
}:
buildDunePackage rec {
pname = "otfed";
version = "0.3.1";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "gfngfn";
repo = pname;
rev = version;
hash = "sha256-6QCom9nrz0B5vCmuBzqsM0zCs8tBLJC6peig+vCgMVA=";
};
buildInputs = [
uutf
];
propagatedBuildInputs = [
base
ppx_deriving
ppx_inline_test
];
checkInputs = [
alcotest
];
doCheck = true;
meta = {
homepage = "https://github.com/gfngfn/otfed";
description = "OpenType Font Format Encoder & Decoder";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1387,6 +1387,8 @@ let
oseq = callPackage ../development/ocaml-modules/oseq { };
otfed = callPackage ../development/ocaml-modules/otfed { };
otfm = callPackage ../development/ocaml-modules/otfm { };
otoml = callPackage ../development/ocaml-modules/otoml { };