ocamlPackages.postgresql: 5.0.0 → 5.1.3

This commit is contained in:
Vincent Laporte
2025-02-07 10:06:28 +01:00
committed by Vincent Laporte
parent 9755fc6210
commit 1d509968e7
@@ -1,26 +1,24 @@
{ lib, fetchFromGitHub, buildDunePackage, dune-configurator, libpq }:
{ lib, fetchurl, buildDunePackage, pkg-config, dune-configurator, libpq }:
buildDunePackage rec {
pname = "postgresql";
version = "5.0.0";
version = "5.1.3";
useDune2 = true;
minimalOCamlVersion = "4.12";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "mmottl";
repo = "postgresql-ocaml";
rev = version;
sha256 = "1i4pnh2v00i0s7s9pcwz1x6s4xcd77d08gjjkvy0fmda6mqq6ghn";
src = fetchurl {
url = "https://github.com/mmottl/postgresql-ocaml/releases/download/${version}/postgresql-${version}.tbz";
hash = "sha256-RipVP8mj+tYwO8LrVASvVc36ZAJYjMI4x6Uj5J50Eww=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ libpq ];
meta = {
description = "Bindings to the PostgreSQL library";
license = lib.licenses.lgpl21Plus;
changelog = "https://raw.githubusercontent.com/mmottl/postgresql-ocaml/refs/tags/${version}/CHANGES.md";
maintainers = with lib.maintainers; [ bcc32 ];
homepage = "https://mmottl.github.io/postgresql-ocaml";
};