about summary refs log tree commit diff
path: root/pkgs/development/compilers/microscheme/default.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-12 15:21:26 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-30 13:31:45 -0500
commitaa4707fc3449192b961bfd2dfc16b9042df0d7f3 (patch)
tree02678d0bdefb86a692e8ac435484b7ec03ebf6c2 /pkgs/development/compilers/microscheme/default.nix
parent501d072b5ff48d55b97027a38626cb252c4d026c (diff)
downloadnixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar.gz
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar.bz2
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar.lz
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar.xz
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.tar.zst
nixlib-aa4707fc3449192b961bfd2dfc16b9042df0d7f3.zip
treewide: use gnu toolchain for avr/arm-embedded
These packages should in theory work with our GCC toolchains, but
there are some definite breakages that need to be tracked down.
Comparing output of these to old gcc-arm-embedded is important.

Affected packages include:

- axolooti
- avrdudess
- opentx
- microscheme
- betaflight
- inav
- blackmagic
- simavr
- gnuk
Diffstat (limited to 'pkgs/development/compilers/microscheme/default.nix')
-rw-r--r--pkgs/development/compilers/microscheme/default.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/development/compilers/microscheme/default.nix b/pkgs/development/compilers/microscheme/default.nix
index cfee1b0d8639..f15a76243277 100644
--- a/pkgs/development/compilers/microscheme/default.nix
+++ b/pkgs/development/compilers/microscheme/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchzip, vim, avrdude, avrbinutils, avrgcc, avrlibc, makeWrapper }:
+{ stdenv, fetchzip, vim, makeWrapper }:
 
 stdenv.mkDerivation rec {
   name = "microscheme-${version}";
@@ -10,15 +10,10 @@ stdenv.mkDerivation rec {
     sha256 = "1r3ng4pw1s9yy1h5rafra1rq19d3vmb5pzbpcz1913wz22qdd976";
   };
 
-  # Just a guess
-  propagatedBuildInputs = [ avrlibc ];
   buildInputs = [ makeWrapper vim ];
 
   installPhase = ''
     make install PREFIX=$out
-
-    wrapProgram $out/bin/microscheme \
-      --prefix PATH : "${stdenv.lib.makeBinPath [ avrdude avrgcc avrbinutils ]}"
   '';
 
   meta = with stdenv.lib; {