summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis St-Amour <fstamour@users.noreply.github.com>2019-09-21 14:59:18 -0400
committerDrashna Jael're <drashna@live.com>2019-12-05 16:03:51 -0800
commit05cbac82e331c91303ec5703cf20ae72188772a4 (patch)
tree0e59a7e6796df55a591f8b36a3d74b62dde09baf
parent62c1edc5ac2d3bc4fa5c4246d527823ee687d619 (diff)
add python3 to shell.nix (#6774)
-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 ];