My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/ocaml-modules/rope/default.nix

25 lines
702 B

{ 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 ];
};
}