Fri Feb 20 11:01:23 PM CST 2026

This commit is contained in:
geegor 2026-02-20 23:01:23 -06:00
parent 221bd829e9
commit 357b817d42

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ libiio just uv ];
LD_LIBRARY_PATH = "${pkgs.libiio}/bin";
}