From 8c8c245ba8cf74f0d6efda6272da3441c1abedc8 Mon Sep 17 00:00:00 2001 From: Dom H Date: Mon, 17 Jan 2022 05:20:07 +0000 Subject: [PATCH] refactor(setup): More descriptive variable name --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index f36dc2e2..db301abf 100644 --- a/shell.nix +++ b/shell.nix @@ -13,7 +13,7 @@ let inherit (lib) ; url = "https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v2.5.0/scripts/requirements-base.txt"; sha256 = "919a78ba9457a8e55451450329158ff7fdcbc4a2ddb0dd76ea804c3b04a3c6c6"; }; - machNix = mach-nix.mkPython rec { + python-pkgs = mach-nix.mkPython rec { requirements = builtins.readFile zephyr-requirements; }; in mkShell { @@ -24,7 +24,7 @@ in mkShell { dtc dfu-util gcc-arm-embedded - machNix + python-pkgs ]; shellHook = ''