mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
remove avr gcc from inputs (it should be rebuit with C++ support)
This commit is contained in:
parent
25f0472564
commit
495f4c597f
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, buildPythonPackage, minicom, avrdude, arduino_core, avrgcclibc }:
|
||||
{ stdenv, fetchurl, buildPythonPackage, minicom, avrdude, arduino_core }:
|
||||
|
||||
buildPythonPackage {
|
||||
name = "ino-0.3.4";
|
||||
|
@ -9,7 +9,8 @@ buildPythonPackage {
|
|||
sha256 = "1v7z3da31cv212k28aci269qkg92p377fm7i76rymjjpjra7payv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ minicom avrdude arduino_core avrgcclibc ];
|
||||
# TODO: add avrgcclibc, it must be rebuild with C++ support
|
||||
propagatedBuildInputs = [ minicom avrdude arduino_core ];
|
||||
|
||||
patchPhase = ''
|
||||
echo "Patching Arduino distribution path"
|
||||
|
|
Loading…
Reference in a new issue