fpc: add license + homepage

This commit is contained in:
Markus Kowalewski 2018-08-20 00:20:07 +02:00
parent 456a1346a8
commit 49ee72b744
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -35,10 +35,12 @@ stdenv.mkDerivation rec {
bootstrap = startFPC; bootstrap = startFPC;
}; };
meta = { meta = with stdenv.lib; {
description = "Free Pascal Compiler from a source distribution"; description = "Free Pascal Compiler from a source distribution";
maintainers = [stdenv.lib.maintainers.raskin]; homepage = https://www.freepascal.org;
platforms = stdenv.lib.platforms.linux; maintainers = [ maintainers.raskin ];
license = with licenses; [ gpl2 lgpl2 ];
platforms = platforms.linux;
inherit version; inherit version;
}; };
} }