python312Packages.linear-operator: 0.5.3 -> 0.6
[NixPkgs.git] / pkgs / development / compilers / gcc / common / meta.nix
blobf9af92746f0bf3c6ff5e82196e89a3ab990749e3
1 { lib, version }:
3 let
4   inherit (lib)
5     licenses
6     maintainers
7     platforms
8     teams
9     versionOlder
10     ;
13   homepage = "https://gcc.gnu.org/";
14   license = licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
15   description = "GNU Compiler Collection, version ${version}";
16   longDescription = ''
17     The GNU Compiler Collection includes compiler front ends for C, C++,
18     Objective-C, Fortran, OpenMP for C/C++/Fortran, and Ada, as well as
19     libraries for these languages (libstdc++, libgomp,...).
21     GCC development is a part of the GNU Project, aiming to improve the
22     compiler used in the GNU system including the GNU/Linux variant.
23   '';
25   platforms = platforms.unix;
26   maintainers = teams.gcc.members;