commit 9e4bcac5bb2c2fc3d2d448b535d8e64b326cd821
parent e568c40f047af1e865c03216680086e939575864
Author: MTRNord <mtrnord1@gmail.com>
Date: Fri, 8 Sep 2023 17:44:52 +0200
Fix pgbouncer
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/overlays/default.nix b/overlays/default.nix
@@ -1,5 +1,5 @@
# This file defines overlays
-{ inputs, pkgs, autoreconfHook, ... }:
+{ inputs, pkgs, ... }:
{
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../pkgs { pkgs = final; };
@@ -35,7 +35,7 @@
submodules = true;
};
- nativeBuildInputs = old.nativeBuildInputs ++ [ autoreconfHook ];
+ nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.autoreconfHook ];
});
};