mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
ocamlPackages.uuseg: 0.9.0 -> 1.0.0
This commit is contained in:
parent
7565673f71
commit
190cc67310
|
@ -1,39 +1,28 @@
|
|||
{ stdenv, buildOcaml, fetchurl, ocaml, findlib, ocamlbuild, opam, uucp, uutf, cmdliner }:
|
||||
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, uchar, uucp, uutf, cmdliner }:
|
||||
|
||||
let
|
||||
pname = "uuseg";
|
||||
webpage = "http://erratique.ch/software/${pname}";
|
||||
in
|
||||
|
||||
buildOcaml rec {
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
minimumSupportedOcamlVersion = "4.01";
|
||||
|
||||
name = pname;
|
||||
version = "0.9.0";
|
||||
name = "ocaml${ocaml.version}-${pname}-${version}";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${webpage}/releases/${pname}-${version}.tbz";
|
||||
sha256 = "00n4zi8dyw2yzi4nr2agcrr33b0q4dr9mgnkczipf4c0gm5cm50h";
|
||||
sha256 = "0m5n0kn70w862g5dhfkfvrnmb98z1r02g21ap7l81hy8sn08cbsz";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ocamlbuild opam cmdliner ];
|
||||
propagatedBuildInputs = [ uucp uutf ];
|
||||
buildInputs = [ ocaml findlib ocamlbuild opam cmdliner topkg uutf ];
|
||||
propagatedBuildInputs = [ uucp uchar ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
unpackCmd = "tar xjf $src";
|
||||
|
||||
buildPhase = ''
|
||||
ocaml pkg/build.ml \
|
||||
native=true native-dynlink=true \
|
||||
uutf=true cmdliner=true
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
opam-installer --script --prefix=$out ${pname}.install | sh
|
||||
ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml.version}/site-lib/${pname}
|
||||
'';
|
||||
inherit (topkg) buildPhase installPhase;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An OCaml library for segmenting Unicode text";
|
||||
|
|
Loading…
Reference in a new issue