nixpkgs/pkgs/development/ocaml-modules/pgocaml/default.nix
2024-01-04 21:33:20 +01:00

28 lines
767 B
Nix

{ lib, fetchFromGitHub, buildDunePackage
, calendar, camlp-streams, csv, hex, ppx_deriving, ppx_sexp_conv, re, rresult, sexplib
}:
buildDunePackage rec {
pname = "pgocaml";
version = "4.4.0";
src = fetchFromGitHub {
owner = "darioteixeira";
repo = "pgocaml";
rev = "v${version}";
hash = "sha256-Mz3zVgXas1UivH/BVARx5kWClgr9v9YcGarwaD961tU=";
};
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ calendar csv hex ppx_deriving ppx_sexp_conv re
rresult sexplib camlp-streams
];
meta = with lib; {
description = "An interface to PostgreSQL databases for OCaml applications";
homepage = "https://github.com/darioteixeira/pgocaml";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ vbgl ];
};
}