4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
39 lines
1005 B
Nix
39 lines
1005 B
Nix
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uutf, result }:
|
|
|
|
let
|
|
pname = "otfm";
|
|
version = "0.3.0";
|
|
webpage = "https://erratique.ch/software/${pname}";
|
|
in
|
|
|
|
assert lib.versionAtLeast ocaml.version "4.01.0";
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml-${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
|
sha256 = "054s82539k3kc9na6s47g3scsl04icjahpas7pv5351jmsgqcq3k";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
propagatedBuildInputs = [ uutf result ];
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = with lib; {
|
|
description = "OpenType font decoder for OCaml";
|
|
longDescription = ''
|
|
Otfm is an in-memory decoder for the OpenType font data format. It
|
|
provides low-level access to font tables and functions to decode some
|
|
of them.
|
|
'';
|
|
homepage = webpage;
|
|
platforms = ocaml.meta.platforms or [];
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
};
|
|
}
|