aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-02 15:10:57 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-02 15:42:32 -0500
commit0b66270adac94937ee3c4a3ad4de644e8b65c679 (patch)
tree46933167e6be0f11ba9e3a352f3bf87aa23a010d /pkgs/development/misc
parent3493f44727b3dd341c8fae213ea563a0593d5277 (diff)
avrlibc: set platforms to avr-none
It will only build on avr architectures.
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/avr/libc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/misc/avr/libc/default.nix b/pkgs/development/misc/avr/libc/default.nix
index afe30e4b5ee..ab9a696afb0 100644
--- a/pkgs/development/misc/avr/libc/default.nix
+++ b/pkgs/development/misc/avr/libc/default.nix
@@ -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 ];
};
}