1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-09-19 07:47:20 +03:00
mobile-nixos/shell.nix
2019-10-27 00:45:47 +10:00

14 lines
483 B
Nix

with (import ./overlay) {};
# A basic shell with some tools available for porting devices.
mkShell rec {
name = "nixos-mobile";
buildInputs = [
dtbTool # Combines multiple device tree blobs into one image
file # Shows the type of files
lz4 # Decompress image files
mkbootimg # Pack and unpack boot images
python3Packages.binwalk # Search a binary image for embedded files
];
}