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

33 lines
837 B
Nix
Raw Normal View History

2015-07-01 18:14:00 +00:00
{ stdenv, fetchzip, ocaml, findlib }:
stdenv.mkDerivation {
2015-10-30 05:03:41 +00:00
name = "ocaml-csv-1.4.2";
2015-07-01 18:14:00 +00:00
src = fetchzip {
2015-10-30 05:03:41 +00:00
url = https://github.com/Chris00/ocaml-csv/releases/download/1.4.2/csv-1.4.2.tar.gz;
sha256 = "05s8py2qr3889c72g1q07r15pzch3j66xdphxi2sd93h5lvnpi4j";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
2015-07-01 18:14:00 +00:00
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
buildPhase = "ocaml setup.ml -build";
2015-07-01 18:14:00 +00:00
doCheck = true;
checkPhase = "ocaml setup.ml -test";
installPhase = "ocaml setup.ml -install";
meta = with stdenv.lib; {
description = "A pure OCaml library to read and write CSV files";
2015-07-01 18:14:00 +00:00
homepage = https://github.com/Chris00/ocaml-csv;
license = licenses.lgpl21;
maintainers = [ maintainers.vbgl ];
platforms = ocaml.meta.platforms or [];
};
}