1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00
mobile-nixos/shell.nix
2021-02-11 18:15:34 -05:00

20 lines
725 B
Nix

with (import ./overlay) {};
# A basic shell with some tools available for porting devices.
mkShell rec {
name = "nixos-mobile";
buildInputs = [
# Custom tools
mobile-nixos.autoport # Helps users kickstart their ports
# Third party tools
dtc # For playing around with device tree files
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
ubootTools # A couple useful utilities
];
}