pmos-work-a71/dev/default.nix

17 lines
248 B
Nix

{
perSystem = {
config,
pkgs,
...
}: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
android-tools
(python3.withPackages (pypi: with pypi; [
libfdt
]))
];
};
};
}