This commit is contained in:
암냥 2026-07-03 00:36:40 +09:00
commit ba26116797
No known key found for this signature in database
67 changed files with 18730 additions and 0 deletions

36
devenv.nix Normal file
View file

@ -0,0 +1,36 @@
{ pkgs, ... }:
{
packages = with pkgs; [
bun
nodejs_24
rustc
cargo
rustfmt
clippy
pkg-config
openssl
git
webkitgtk_4_1
gtk3
glib
cairo
pango
gdk-pixbuf
libsoup_3
librsvg
dbus
at-spi2-atk
xdotool
];
env = {
GIO_MODULE_DIR = "${pkgs.glib-networking}/lib/gio/modules";
WEBKIT_DISABLE_COMPOSITING_MODE = "1";
};
scripts.check.exec = ''
bun run build
cargo check --manifest-path src-tauri/Cargo.toml
'';
}