minimum uci parceing

This commit is contained in:
k
2025-06-10 06:23:25 -04:00
parent 276539181c
commit c2d539e6a9
2 changed files with 49 additions and 0 deletions

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{pkgs ? import <nixpkgs> {}}:
with pkgs;
mkShell rec {
packages = [gdb clang-tools];
nativeBuildInputs = [
pkg-config
gcc
gnumake
];
buildInputs = [
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}