avr-gcc: set meta.platforms = linux

So that hydra will build it and add it to the binary channel.
This commit is contained in:
Bjørn Forsman 2014-05-31 18:06:20 +02:00
parent 61b79d2eee
commit 0717378c46

View File

@ -78,10 +78,11 @@ stdenv.mkDerivation {
''; '';
}; };
meta = { meta = with stdenv.lib; {
description = "AVR developement environment including binutils, avr-gcc and avr-libc"; description = "AVR developement environment including binutils, avr-gcc and avr-libc";
# I've tried compiling the packages separately.. too much hassle. This just works. Fine. # I've tried compiling the packages separately.. too much hassle. This just works. Fine.
license = ["GPL" "LGPL"]; # see single packages .. license = ["GPL" "LGPL"]; # see single packages ..
homepage = []; # dito homepage = []; # dito
platforms = platforms.linux;
}; };
} }