2015-04-10 10:54:10 +01:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, camlp4, calendar, csv, ocaml_pcre }:
|
2014-10-10 23:51:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-04-10 10:54:10 +01:00
|
|
|
name = "ocaml-pgocaml-2.2";
|
2014-10-10 23:51:29 +01:00
|
|
|
src = fetchurl {
|
2015-04-10 10:54:10 +01:00
|
|
|
url = http://forge.ocamlcore.org/frs/download.php/1506/pgocaml-2.2.tgz;
|
|
|
|
sha256 = "0x0dhlz2rqxpwfdqi384f9fn0ng2irifadmxfm2b4gcz7y1cl9rh";
|
2014-10-10 23:51:29 +01:00
|
|
|
};
|
|
|
|
|
2015-04-10 10:54:10 +01:00
|
|
|
buildInputs = [ ocaml findlib camlp4 ];
|
|
|
|
propagatedBuildInputs = [ calendar csv ocaml_pcre ];
|
2014-10-10 23:51:29 +01:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interface to PostgreSQL databases for OCaml applications";
|
|
|
|
homepage = http://pgocaml.forge.ocamlcore.org/;
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = ocaml.meta.platforms;
|
|
|
|
maintainers = with maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|