nixpkgs/pkgs/development/ocaml-modules/astring/default.nix

35 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
2016-11-03 02:12:14 +01:00
stdenv.mkDerivation rec {
2016-11-03 02:12:14 +01:00
version = "0.8.3";
name = "ocaml${ocaml.version}-astring-${version}";
2016-11-03 02:12:14 +01:00
src = fetchurl {
url = "https://erratique.ch/software/astring/releases/astring-${version}.tbz";
2016-11-03 02:12:14 +01:00
sha256 = "0ixjwc3plrljvj24za3l9gy0w30lsbggp8yh02lwrzw61ls4cri0";
};
2017-12-14 08:36:29 +01:00
buildInputs = [ ocaml findlib ocamlbuild topkg ];
2016-11-03 02:12:14 +01:00
2017-12-14 08:36:29 +01:00
inherit (topkg) buildPhase installPhase;
2016-11-03 02:12:14 +01:00
meta = {
homepage = "https://erratique.ch/software/astring";
2016-11-03 02:12:14 +01:00
description = "Alternative String module for OCaml";
longDescription = ''
Astring exposes an alternative String module for OCaml. This module tries
to balance minimality and expressiveness for basic, index-free, string
processing and provides types and functions for substrings, string sets
and string maps.
Remaining compatible with the OCaml String module is a non-goal.
The String module exposed by Astring has exception safe functions, removes
deprecated and rarely used functions, alters some signatures and names,
adds a few missing functions and fully exploits OCaml's newfound string
immutability.
'';
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
};
}