Commit 1d509968 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.postgresql: 5.0.0 → 5.1.3

parent 9755fc62
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
{ 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";
  };