summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
Diffstat (limited to 'shells')
-rw-r--r--shells/all.nix22
-rw-r--r--shells/haemolacriaa.nix16
2 files changed, 38 insertions, 0 deletions
diff --git a/shells/all.nix b/shells/all.nix
new file mode 100644
index 0000000..f7f298f
--- /dev/null
+++ b/shells/all.nix
@@ -0,0 +1,22 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ packages = with pkgs; [
+ clang
+ llvmPackages.bintools
+ xorg.libX11.dev
+ xorg.libXft.dev
+ xorg.libXinerama.dev
+ rustup
+ rustfmt
+ trunk
+ rustc-wasm32
+ dioxus-cli
+ cargo-leptos
+ cargo-generate
+ tailwindcss
+ binaryen
+ sqlite
+ sqlx-cli
+ ];
+}
diff --git a/shells/haemolacriaa.nix b/shells/haemolacriaa.nix
new file mode 100644
index 0000000..65a20f2
--- /dev/null
+++ b/shells/haemolacriaa.nix
@@ -0,0 +1,16 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ packages = with pkgs; [
+ rustup
+ rustfmt
+ trunk
+ rustc-wasm32
+ cargo-leptos
+ cargo-generate
+ tailwindcss
+ binaryen
+ sqlite
+ sqlx-cli
+ ];
+}