mirror of
https://github.com/armbian/build.git
synced 2025-08-14 23:26:57 +02:00
* Added `shell.nix` definition for temporary development environment for Nix(OS) * Set uuidgen and other binaries check to not rely on hard-codded paths
9 lines
227 B
Nix
9 lines
227 B
Nix
# Configuration file for Nix(OS) to provide a temporary development enviroment
|
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
util-linux # Needed for uuidgen
|
|
];
|
|
}
|