Files
2026-05-12 13:28:29 -05:00

48 lines
765 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
base,
ppx_deriving,
ppx_inline_test,
uutf,
alcotest,
}:
buildDunePackage (finalAttrs: {
pname = "otfed";
version = "0.3.1";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "gfngfn";
repo = "otfed";
rev = finalAttrs.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 ];
};
})