92ef4067a6
The uchar package provides a compatibility library for the `Uchar` module introduced in OCaml 4.03.
28 lines
856 B
Nix
28 lines
856 B
Nix
{ stdenv, fetchurl, ocaml, ocamlbuild, opam }:
|
||
|
||
stdenv.mkDerivation {
|
||
name = "ocaml${ocaml.version}-uchar-0.0.1";
|
||
|
||
src = fetchurl {
|
||
url = https://github.com/ocaml/uchar/releases/download/v0.0.1/uchar-0.0.1.tbz;
|
||
sha256 = "0ficw1x7ymbd6m8hqw3w1aycwm1hbwd6bad3c5pspwnzh3qlikhi";
|
||
};
|
||
|
||
unpackCmd = "tar xjf $src";
|
||
buildInputs = [ ocaml ocamlbuild opam ];
|
||
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
|
||
installPhase = ''
|
||
opam-installer --script --prefix=$out uchar.install > install.sh
|
||
sh install.sh
|
||
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/
|
||
ln -s $out/lib/uchar $out/lib/ocaml/${ocaml.version}/site-lib/
|
||
'';
|
||
|
||
|
||
meta = {
|
||
description = "Compatibility library for OCaml’s Uchar module";
|
||
inherit (ocaml.meta) platforms license;
|
||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||
};
|
||
}
|