Fix some issues in my packages reported by nixpkgs-lint.

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
Moritz Ulrich
2013-09-26 21:37:49 +02:00
parent 2c5230cb64
commit 36fca94805
6 changed files with 18 additions and 18 deletions

View File

@@ -19,10 +19,11 @@ stdenv.mkDerivation rec {
automake -a
'';
meta = {
meta = with stdenv.lib; {
description = "Assember for the Atmel AVR microcontroller family";
homepage = http://avra.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ the-kenny ];
};
}