From a0f4b8e3e72d34fea9e975ba70cde9a07b737c1d Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 15 Nov 2024 07:23:19 -0800 Subject: [PATCH] feat: add sqlx-cli to shell.nix --- .gitignore | 1 + shell.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d3ada42..24588bd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ .DS_Store /.cache /node_modules +testing.db diff --git a/shell.nix b/shell.nix index 52dbc8e..ed9e928 100644 --- a/shell.nix +++ b/shell.nix @@ -6,6 +6,8 @@ mkShell rec { nativeBuildInputs = [ pkg-config openssl + # TODO: Figure out a better way to include sqlx only in dev shells (release shell?) + sqlx-cli ]; buildInputs = additionalBuildInputs; LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;