ocamlPackages.otfed: init at 0.3.1
This commit is contained in:
parent
3cb442f494
commit
c58d90c2cf
2 changed files with 48 additions and 0 deletions
46
pkgs/development/ocaml-modules/otfed/default.nix
Normal file
46
pkgs/development/ocaml-modules/otfed/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue