init
This commit is contained in:
commit
ba26116797
67 changed files with 18730 additions and 0 deletions
36
devenv.nix
Normal file
36
devenv.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue