28 lines
764 B
Nix
28 lines
764 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 = "Interface to PostgreSQL databases for OCaml applications";
|
||
|
homepage = "https://github.com/darioteixeira/pgocaml";
|
||
|
license = licenses.lgpl2Only;
|
||
|
maintainers = with maintainers; [ vbgl ];
|
||
|
};
|
||
|
}
|