avrlibc: set platforms to avr-none

It will only build on avr architectures.
This commit is contained in:
Matthew Bauer 2018-11-02 15:10:57 -05:00
parent 3493f44727
commit 0b66270ada

View File

@ -25,7 +25,7 @@ stdenv.mkDerivation {
description = "a C runtime library for AVR microcontrollers";
homepage = http://savannah.nongnu.org/projects/avr-libc/;
license = licenses.bsd3;
platforms = platforms.all;
platforms = [ "avr-none" ];
maintainers = with maintainers; [ mguentner ];
};
}