fpc: add license + homepage

+6 -4
+6 -4
pkgs/development/compilers/fpc/default.nix
··· 22 22 makeFlags = "NOGDB=1 FPC=${startFPC}/bin/fpc"; 23 23 24 24 installFlags = "INSTALL_PREFIX=\${out}"; 25 - 25 + 26 26 postInstall = '' 27 27 for i in $out/lib/fpc/*/ppc*; do 28 28 ln -fs $i $out/bin/$(basename $i) ··· 35 35 bootstrap = startFPC; 36 36 }; 37 37 38 - meta = { 38 + meta = with stdenv.lib; { 39 39 description = "Free Pascal Compiler from a source distribution"; 40 - maintainers = [stdenv.lib.maintainers.raskin]; 41 - platforms = stdenv.lib.platforms.linux; 40 + homepage = https://www.freepascal.org; 41 + maintainers = [ maintainers.raskin ]; 42 + license = with licenses; [ gpl2 lgpl2 ]; 43 + platforms = platforms.linux; 42 44 inherit version; 43 45 }; 44 46 }