From 3e790cd18aa47b1c8d0f6ca596cab56bf3cc39df Mon Sep 17 00:00:00 2001 From: yukkop Date: Sun, 16 Feb 2025 17:03:59 +0000 Subject: [PATCH] fix(pg-migration): postgres build inputs --- package/postgres/pg-migration/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/postgres/pg-migration/default.nix b/package/postgres/pg-migration/default.nix index 266ae25..098a3d9 100644 --- a/package/postgres/pg-migration/default.nix +++ b/package/postgres/pg-migration/default.nix @@ -2,6 +2,7 @@ cargoToml, nativeBuildInputs, pkgs, + postgresql_15, ... }: let src = ./.; @@ -15,5 +16,7 @@ in cargoLock.lockFile = ./Cargo.lock; + buildInputs = [ postgresql_15 ]; + doCheck = true; }