summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis St-Amour <fstamour@users.noreply.github.com>2019-09-21 14:59:18 -0400
committerskullydazed <skullydazed@users.noreply.github.com>2019-09-21 11:59:18 -0700
commite05b32d8941c90f5af8da85f29190c45e917bbd3 (patch)
tree85097e8beaeda304ca5611464e3d5ccdaabd3f13
parent0e96068d2352a1895ee1426b90bd54e4e055a672 (diff)
add python3 to shell.nix (#6774)0.7.24
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index e85221975d..df5aff3508 100644
--- a/shell.nix
+++ b/shell.nix
@@ -32,7 +32,7 @@ in
stdenv.mkDerivation {
name = "qmk-firmware";
- buildInputs = [ dfu-programmer dfu-util diffutils git ]
+ buildInputs = [ dfu-programmer dfu-util diffutils git python3 ]
++ lib.optional avr [ avrbinutils avrgcc avrlibc avrdude ]
++ lib.optional arm [ gcc-arm-embedded ]
++ lib.optional teensy [ teensy-loader-cli ];