ocamlPackages.{benchmark,obuild,ptmap,rope}: init at 1.4, 0.1.8, 2.0.1, 0.5

This commit is contained in:
Volth
2017-07-05 17:48:45 +00:00
committed by Vincent Laporte
parent f9a2866508
commit 18e3799cd1
6 changed files with 121 additions and 0 deletions
@@ -0,0 +1,24 @@
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, benchmark }:
let version = "0.5"; in
stdenv.mkDerivation {
name = "ocaml${ocaml.version}-rope-${version}";
src = fetchzip {
url = "https://forge.ocamlcore.org/frs/download.php/1156/rope-${version}.tar.gz";
sha256 = "1i8kzg19jrapl30mq8m91vy09z0r0dl4bnpw24ga96w8pxqf9qhd";
};
buildInputs = [ ocaml findlib ocamlbuild benchmark ];
createFindlibDestdir = true;
meta = {
homepage = http://rope.forge.ocamlcore.org/;
platforms = ocaml.meta.platforms or [];
description = ''Ropes ("heavyweight strings") in OCaml'';
license = stdenv.lib.licenses.lgpl21;
maintainers = with stdenv.lib.maintainers; [ volth ];
};
}