From: Jon Allen <ylixir@gmail.com>
Date: Mon, 2 Jul 2018 18:39:20 +0000 (-0500)
Subject: allow building with nix on darwin
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1f5d5e5314841e5379598a7fbeee5d6a91179839;p=qmk_firmware.git

allow building with nix on darwin
add avrdude do dependency list
---

diff --git a/shell.nix b/shell.nix
index ce17dd41e..715414f96 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,4 +1,5 @@
-{ pkgs ? import <nixpkgs> {}
+# dfu-programmer doesn't have darwin on it's list of supported platforms
+{ pkgs ? import <nixpkgs> { config = { allowUnsupportedSystem = true; }; }
 , avr ? true, arm ? true, teensy ? true }:
 
 with pkgs;
@@ -18,7 +19,7 @@ stdenv.mkDerivation {
   name = "qmk-firmware";
 
   buildInputs = [ dfu-programmer dfu-util diffutils git ]
-    ++ lib.optional avr [ avrbinutils avrgcc avrlibc ]
+    ++ lib.optional avr [ avrbinutils avrgcc avrlibc avrdude ]
     ++ lib.optional arm [ gcc-arm-embedded ]
     ++ lib.optional teensy [ teensy-loader-cli ];