3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/uucd/default.nix

34 lines
882 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, xmlm, topkg }:
2016-10-05 08:32:30 +01:00
let
pname = "uucd";
webpage = "http://erratique.ch/software/${pname}";
in
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
2016-10-05 08:32:30 +01:00
version = "4.0.0";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
2016-07-18 19:23:08 +01:00
sha256 = "11cjfwa4wjhsyvzq4wl9z44xi28n49drz8nbfpx754vyfzwj3yc6";
};
buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
createFindlibDestdir = true;
unpackCmd = "tar xjf $src";
inherit (topkg) buildPhase installPhase;
propagatedBuildInputs = [ xmlm ];
meta = with stdenv.lib; {
description = "An OCaml module to decode the data of the Unicode character database from its XML representation";
homepage = "${webpage}";
platforms = ocaml.meta.platforms or [];
maintainers = [ maintainers.vbgl ];
license = licenses.bsd3;
};
}