biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / otfed / default.nix
blobd9d3c5bcb54f0f0cedcc2a6a0624860ad1509562
1 { lib
2 , buildDunePackage
3 , fetchFromGitHub
4 , base
5 , ppx_deriving
6 , ppx_inline_test
7 , uutf
8 , alcotest
9 }:
11 buildDunePackage rec {
12   pname = "otfed";
13   version = "0.3.1";
15   minimalOCamlVersion = "4.08";
17   src = fetchFromGitHub {
18     owner = "gfngfn";
19     repo = pname;
20     rev = version;
21     hash = "sha256-6QCom9nrz0B5vCmuBzqsM0zCs8tBLJC6peig+vCgMVA=";
22   };
24   buildInputs = [
25     uutf
26   ];
28   propagatedBuildInputs = [
29     base
30     ppx_deriving
31     ppx_inline_test
32   ];
34   checkInputs = [
35     alcotest
36   ];
38   doCheck = true;
40   meta = {
41     homepage = "https://github.com/gfngfn/otfed";
42     description = "OpenType Font Format Encoder & Decoder";
43     license = lib.licenses.mit;
44     maintainers = [ lib.maintainers.vbgl ];
45   };