delete shell.nix

This commit is contained in:
Simon Gardling 2025-12-05 12:02:22 -05:00
parent 53d90b7328
commit 8a5d9f1cd5
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -1,30 +0,0 @@
{
pkgs ? import <nixpkgs> { },
}:
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}";
}