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

38 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, uunf }:
let
pname = "uucp";
version = "13.0.0";
webpage = "https://erratique.ch/software/${pname}";
minimumOCamlVersion = "4.03";
in
assert lib.assertMsg (lib.versionAtLeast ocaml.version minimumOCamlVersion)
"${pname} needs at least OCaml ${minimumOCamlVersion}";
stdenv.mkDerivation {
2016-12-04 10:39:58 +00:00
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "sha256-OPpHbCOC/vMFdyHwyhCSisUv2PyO8xbeY2oq1a9HbqY=";
};
2017-12-14 07:36:29 +00:00
buildInputs = [ ocaml findlib ocamlbuild topkg uutf uunf ];
2016-12-04 10:39:58 +00:00
propagatedBuildInputs = [ uchar ];
2017-06-29 17:45:11 +00:00
buildPhase = "${topkg.buildPhase} --with-cmdliner false";
inherit (topkg) installPhase;
meta = with lib; {
description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database";
2019-09-08 23:38:31 +00:00
homepage = webpage;
platforms = ocaml.meta.platforms or [];
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
};
}