armbian_build/shell.nix
Jacob Hrbek 6556a3a77e Add compatibility for non-FHS 3.0 systems
* Added `shell.nix` definition for temporary development environment for Nix(OS)
* Set uuidgen and other binaries check to not rely on hard-codded paths
2023-07-19 23:16:22 +02:00

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
];
}