Fri Feb 20 11:08:10 PM CST 2026

This commit is contained in:
geegor 2026-02-20 23:08:10 -06:00
parent 357b817d42
commit 1381d4dd1c

View file

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