diff --git a/package/migrator/default.nix b/package/migrator/default.nix index d8ce13c..51b7283 100644 --- a/package/migrator/default.nix +++ b/package/migrator/default.nix @@ -1,4 +1,4 @@ -{ dash, hectic, sqlite, postgresql_17 }: +{ dash, hectic, sqlite, postgresql_17, gawk }: let shell = "${dash}/bin/dash"; bashOptions = [ @@ -9,7 +9,7 @@ let migrator = hectic.writeShellApplication { inherit shell bashOptions; name = "migrator"; - runtimeInputs = [ sqlite postgresql_17 ]; + runtimeInputs = [ sqlite postgresql_17 gawk ]; text = '' ${builtins.readFile hectic.helpers.posix-shell.log}