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; }