nixpkgs/pkgs/development/ocaml-modules/otfed/default.nix
2024-01-02 21:38:56 +01:00

47 lines
732 B
Nix

{ 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 ];
};
}