We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c25950 commit f19ba9eCopy full SHA for f19ba9e
shell.nix
@@ -1,10 +1,13 @@
1
with (import ./overlay) {};
2
3
-# A basic shell with some tools available.
+# A basic shell with some tools available for porting devices.
4
mkShell rec {
5
name = "nixos-mobile";
6
buildInputs = [
7
- mkbootimg
8
- dtbTool
+ dtbTool # Combines multiple device tree blobs into one image
+ file # Shows the type of files
9
+ lz4 # Decompress image files
10
+ mkbootimg # Pack and unpack boot images
11
+ python3Packages.binwalk # Search a binary image for embedded files
12
];
13
}
0 commit comments