ocaml-uutf: 0.9.3 -> 0.9.4

This commit also refactors the expression
This commit is contained in:
sternenseemann 2016-11-03 03:02:16 +01:00 committed by vbgl
parent b15409d6f6
commit 840f2987d1

View File

@ -1,32 +1,36 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }: { stdenv, buildOcaml, fetchurl, ocaml, findlib, ocamlbuild, opam, cmdliner}:
let let
pname = "uutf"; pname = "uutf";
webpage = "http://erratique.ch/software/${pname}"; webpage = "http://erratique.ch/software/${pname}";
in in
assert stdenv.lib.versionAtLeast ocaml.version "3.12"; buildOcaml rec {
name = pname;
version = "0.9.4";
stdenv.mkDerivation rec { minimumSupportedOcamlVersion = "4.00.0";
name = "ocaml-${pname}-${version}";
version = "0.9.3";
src = fetchurl { src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz"; url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "0xvq20knmq25902ijpbk91ax92bkymsqkbfklj1537hpn64lydhz"; sha256 = "1f71fyawxal42x6g82539bv0ava2smlar6rmxxz1cyq3l0i6fw0k";
}; };
buildInputs = [ ocaml findlib ocamlbuild opam ]; buildInputs = [ ocaml findlib ocamlbuild opam cmdliner ];
createFindlibDestdir = true; createFindlibDestdir = true;
unpackCmd = "tar xjf $src"; unpackCmd = "tar xjf $src";
buildPhase = "./pkg/build true"; buildPhase = ''
ocaml pkg/build.ml \
native=true \
native-dynlink=true \
cmdliner=true
'';
installPhase = '' installPhase = ''
opam-installer --script --prefix=$out ${pname}.install > install.sh opam-installer --prefix=$out --script ${pname}.install | sh
sh install.sh ln -s $out/lib/uutf $out/lib/ocaml/${ocaml.version}/site-lib/
ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml.version}/site-lib/
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {