WIP for yocto dev

This commit is contained in:
Aaron Honeycutt 2025-02-24 14:37:10 +00:00
parent 29ad56153f
commit 6677f1e8d0

30
dev/yocto/shell.nix Normal file
View file

@ -0,0 +1,30 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
chrpath
cpio
debianutils
diffstat
file
gawk
git
glibcLocales
gnat
gnumake
iputils
lz4
# Python 3.12 and packages for it
python312
python312Packages.jinja2
python312Packages.gitpython
python312Packages.pexpect
python312Packages.pip
python312Packages.subunit
socat
texinfo
unzip
wget
xz
zstd
];
}