feat: add sqlx-cli to shell.nix
This commit is contained in:
parent
832cc4ad33
commit
a0f4b8e3e7
2 changed files with 3 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
|||
.DS_Store
|
||||
/.cache
|
||||
/node_modules
|
||||
testing.db
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue