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