From 8a5d9f1cd575a3e34ebcee062dec14a7b0a31bd1 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Fri, 5 Dec 2025 12:02:22 -0500 Subject: [PATCH] delete shell.nix --- shell.nix | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 shell.nix 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}"; -}