diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 1424098..0000000 --- a/shell.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - pkgs ? import { }, -}: -pkgs.mkShell rec { - libs = with pkgs; [ - # wayland - libxkbcommon - libGL - wayland - - libx11 - libxcursor - libxi - - clang - ]; - - nativeBuildInputs = - with pkgs; - [ - rustc - cargo - rust-analyzer - python3Packages.fonttools - ] - ++ libs; - - # add libs to path - LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath libs}"; -}