working workspaces
This commit is contained in:
parent
6a6a6b8f86
commit
30af165d02
54 changed files with 5065 additions and 158 deletions
|
|
@ -2,8 +2,15 @@
|
|||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
cairo
|
||||
pkg-config
|
||||
libxkbcommon
|
||||
gtk-layer-shell
|
||||
|
||||
cargo
|
||||
rustfmt
|
||||
flutter_rust_bridge_codegen
|
||||
(pkgs.writeShellScriptBin "rustup" (builtins.readFile ./fake-rustup.sh))
|
||||
|
||||
(flutter.override {
|
||||
extraPkgConfigPackages = [
|
||||
gtk-layer-shell
|
||||
|
|
@ -11,5 +18,10 @@ pkgs.mkShell {
|
|||
})
|
||||
];
|
||||
|
||||
LD_LIBRARY_PATH = "./build/linux/x64/debug/plugins/wayland_layer_shell";
|
||||
RUST_BACKTRACE = 1;
|
||||
LD_LIBRARY_PATH =
|
||||
let
|
||||
plugins = "./build/linux/x64/debug/plugins";
|
||||
in
|
||||
"${plugins}/wayland_layer_shell:${plugins}/rust_lib_flight";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue