mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
41 lines
1 KiB
Nix
41 lines
1 KiB
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";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
buildInputs = [ topkg ];
|
|
|
|
propagatedBuildInputs = [ uutf result ];
|
|
|
|
strictDeps = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|