From dfc30f946cbe0108b89969b23a5f011cd5405224 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 266ae25b..098a3d9e 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; }