Files
nixpkgs/pkgs/development/ocaml-modules/stringext/default.nix
T

35 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ounit, qcheck
2015-07-01 20:19:50 +02:00
# Optionally enable tests; test script use OCaml-4.01+ features
, doCheck ? stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"
}:
2015-01-08 00:19:13 +01:00
2017-06-28 18:13:22 +00:00
let version = "1.4.3"; in
2015-01-08 00:19:13 +01:00
stdenv.mkDerivation {
2017-06-28 18:13:22 +00:00
name = "ocaml${ocaml.version}-stringext-${version}";
2015-01-08 00:19:13 +01:00
2015-04-04 20:18:28 +02:00
src = fetchzip {
url = "https://github.com/rgrinberg/stringext/archive/v${version}.tar.gz";
2017-06-28 18:13:22 +00:00
sha256 = "121k79vjazvsd254yg391fp4spsd1p32amccrahd0g6hjhf5w6sl";
2015-01-08 00:19:13 +01:00
};
buildInputs = [ ocaml findlib ocamlbuild ounit qcheck ];
2015-01-08 00:19:13 +01:00
2015-07-01 20:19:50 +02:00
configurePhase = "ocaml setup.ml -configure --prefix $out"
+ stdenv.lib.optionalString doCheck " --enable-tests";
2015-01-08 00:19:13 +01:00
buildPhase = "ocaml setup.ml -build";
2015-07-01 20:19:50 +02:00
inherit doCheck;
checkPhase = "ocaml setup.ml -test";
2015-01-08 00:19:13 +01:00
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = {
homepage = https://github.com/rgrinberg/stringext;
platforms = ocaml.meta.platforms or [];
2015-01-08 00:19:13 +01:00
description = "Extra string functions for OCaml";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}