about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntonio Nuno Monteiro <anmonteiro@gmail.com>2023-05-01 00:23:32 -0700
committerGitHub <noreply@github.com>2023-05-01 00:23:32 -0700
commite689a64f24490753c79cf9e2139117607a21938d (patch)
tree9b9eaeb27d65d5b8b897ca37ab4f62fe82253510
parentf1c4244e695c3e806f9ffdfdbadae1770fb2635d (diff)
downloadnixlib-e689a64f24490753c79cf9e2139117607a21938d.tar
nixlib-e689a64f24490753c79cf9e2139117607a21938d.tar.gz
nixlib-e689a64f24490753c79cf9e2139117607a21938d.tar.bz2
nixlib-e689a64f24490753c79cf9e2139117607a21938d.tar.lz
nixlib-e689a64f24490753c79cf9e2139117607a21938d.tar.xz
nixlib-e689a64f24490753c79cf9e2139117607a21938d.tar.zst
nixlib-e689a64f24490753c79cf9e2139117607a21938d.zip
ocamlPackages.postgresql: `postgresql` is a buildInput
-rw-r--r--pkgs/development/ocaml-modules/postgresql/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/postgresql/default.nix b/pkgs/development/ocaml-modules/postgresql/default.nix
index d87f6b39efb8..b27ea67eb283 100644
--- a/pkgs/development/ocaml-modules/postgresql/default.nix
+++ b/pkgs/development/ocaml-modules/postgresql/default.nix
@@ -17,7 +17,8 @@ buildDunePackage rec {
 
   nativeBuildInputs = [ postgresql ];
   buildInputs = [ dune-configurator ];
-
+  propagatedBuildInputs = [ postgresql ];
+  
   meta = {
     description = "Bindings to the PostgreSQL library";
     license = lib.licenses.lgpl21Plus;