Support diesel in flake

Add diesel-cli to dev environment
Add postgresql, include rust in package build dependencies
This commit is contained in:
2026-06-14 22:24:07 -04:00
parent 3576661e80
commit 29dc215ba7

View File

@@ -77,11 +77,13 @@
}; };
build-pkgs = with pkgs; [ build-pkgs = with pkgs; [
rust
dioxus-cli dioxus-cli
wasm-bindgen-cli_0_2_123 wasm-bindgen-cli_0_2_123
binaryen binaryen
lld lld
tailwindcss_4 tailwindcss_4
postgresql
]; ];
in in
rec { rec {
@@ -90,7 +92,7 @@
DAISYUI_THEME_PATH = "${daisyui-theme}"; DAISYUI_THEME_PATH = "${daisyui-theme}";
buildInputs = with pkgs; [ buildInputs = with pkgs; [
rust diesel-cli
] ++ build-pkgs; ] ++ build-pkgs;
}; };