1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/shell.nix

14 lines
483 B
Nix
Raw Normal View History

2018-06-27 03:39:26 +03:00
with (import ./overlay) {};
2018-06-10 03:57:12 +03:00
2019-10-26 17:45:47 +03:00
# A basic shell with some tools available for porting devices.
2018-06-10 03:57:12 +03:00
mkShell rec {
name = "nixos-mobile";
buildInputs = [
2019-10-26 17:45:47 +03:00
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
2018-06-10 03:57:12 +03:00
];
}