nixpkgs/pkgs/development/ocaml-modules/pgocaml/default.nix
Florent Becker a52c1b4840 pgocaml: 2.2 -> 2.3
Changes the build system from mkDerivation to buildOcaml
2016-10-22 11:23:41 +02:00

25 lines
656 B
Nix

{ stdenv, fetchurl, buildOcaml, calendar, csv, re }:
buildOcaml {
name = "pgocaml";
version = "2.3";
src = fetchurl {
url = https://github.com/darioteixeira/pgocaml/archive/v2.3.tar.gz;
sha256 = "18lymxlvcf4nwxawkidq3pilsp5rhl0l8ifq6pjk3ssjlx9w53pg";
};
buildInputs = [ ];
propagatedBuildInputs = [ calendar csv re ];
configureFlags = [ "--enable-p4" ];
createFindlibDestdir = true;
meta = with stdenv.lib; {
description = "An interface to PostgreSQL databases for OCaml applications";
homepage = http://pgocaml.forge.ocamlcore.org/;
license = licenses.lgpl2;
maintainers = with maintainers; [ vbgl ];
};
}