2016-10-08 07:44:25 +01:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, ounit }:
|
2015-03-04 11:50:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-01-25 07:04:19 +00:00
|
|
|
name = "ocaml-fileutils-0.5.1";
|
2015-03-04 11:50:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-25 07:04:19 +00:00
|
|
|
url = https://forge.ocamlcore.org/frs/download.php/1651/ocaml-fileutils-0.5.1.tar.gz;
|
|
|
|
sha256 = "0g6zx2rcvacklxyli19ixcf6ich9ipxsps4k3jz98f5zlaab0a7g";
|
2015-03-04 11:50:58 +00:00
|
|
|
};
|
|
|
|
|
2016-10-08 07:44:25 +01:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ounit ];
|
2015-07-23 18:32:21 +01:00
|
|
|
|
|
|
|
configureFlags = "--enable-tests";
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
2015-03-04 11:50:58 +00:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2015-04-01 08:57:52 +01:00
|
|
|
preInstall = "make doc";
|
|
|
|
|
2015-03-04 11:50:58 +00:00
|
|
|
meta = {
|
|
|
|
homepage = https://forge.ocamlcore.org/projects/ocaml-fileutils/;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-03-04 11:50:58 +00:00
|
|
|
description = "Library to provide pure OCaml functions to manipulate real file (POSIX like) and filename";
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|