move to 1.21 and fix for nixos

This commit is contained in:
MeexReay 2025-06-14 03:02:04 +03:00
parent c02d96edca
commit 61c755aabc
8 changed files with 64 additions and 15 deletions

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
shellHook = ''
export LD_LIBRARY_PATH="''${LD_LIBRARY_PATH}''${LD_LIBRARY_PATH:+:}${pkgs.libglvnd}/lib"
'';
}