1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

arduino: set meta.platforms and add myself as maintainer

(cherry picked from commit daec5d6f25)
This commit is contained in:
Bjørn Forsman 2015-02-07 10:29:31 +01:00
parent edac9203f0
commit af261a263c

View file

@ -54,10 +54,11 @@ stdenv.mkDerivation rec {
"$out/share/arduino/hardware/tools/avrdude"
'';
meta = {
meta = with stdenv.lib; {
description = "Open-source electronics prototyping platform";
homepage = http://arduino.cc/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.antono stdenv.lib.maintainers.robberer ];
platforms = platforms.all;
maintainers = with maintainers; [ antono robberer bjornfor ];
};
}