nixpkgs/pkgs/development/ocaml-modules/uunf/default.nix

33 lines
872 B
Nix
Raw Normal View History

2017-12-14 07:36:29 +00:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, cmdliner }:
let
pname = "uunf";
webpage = "https://erratique.ch/software/${pname}";
in
2016-12-04 10:33:02 +00:00
assert stdenv.lib.versionAtLeast ocaml.version "4.01";
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
2020-02-06 08:40:12 +00:00
version = "12.0.0";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
2020-02-06 08:40:12 +00:00
sha256 = "031fxixp37hjv45mib87wxm865k82903w72x60hp6v36k7jn34a4";
};
2017-12-14 07:36:29 +00:00
buildInputs = [ ocaml findlib ocamlbuild topkg uutf cmdliner ];
2016-12-04 10:33:02 +00:00
propagatedBuildInputs = [ uchar ];
2016-12-04 10:33:02 +00:00
inherit (topkg) buildPhase installPhase;
meta = with stdenv.lib; {
description = "An OCaml module for normalizing Unicode text";
2019-09-08 23:38:31 +00:00
homepage = webpage;
platforms = ocaml.meta.platforms or [];
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
broken = stdenv.isAarch64;
};
}