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

33 lines
831 B
Nix
Raw Normal View History

2015-07-01 20:14:00 +02:00
{ stdenv, fetchzip, ocaml, findlib }:
stdenv.mkDerivation {
2015-07-23 19:36:24 +02:00
name = "ocaml-csv-1.4.1";
2015-07-01 20:14:00 +02:00
src = fetchzip {
2015-07-23 19:36:24 +02:00
url = https://github.com/Chris00/ocaml-csv/releases/download/1.4.1/csv-1.4.1.tar.gz;
sha256 = "1z38qy92lq8qh91bs70vsv868szainif53a2y6rf47ijdila25j4";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
2015-07-01 20:14:00 +02:00
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
buildPhase = "ocaml setup.ml -build";
2015-07-01 20:14:00 +02: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 20:14:00 +02:00
homepage = https://github.com/Chris00/ocaml-csv;
license = licenses.lgpl21;
maintainers = [ maintainers.vbgl ];
platforms = ocaml.meta.platforms;
};
}