about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/common/meta.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/gcc/common/meta.nix')
-rw-r--r--pkgs/development/compilers/gcc/common/meta.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/compilers/gcc/common/meta.nix b/pkgs/development/compilers/gcc/common/meta.nix
deleted file mode 100644
index a578705a66ec..000000000000
--- a/pkgs/development/compilers/gcc/common/meta.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, version, }:
-
-let
-  inherit (lib)
-    licenses
-    maintainers
-    platforms
-    teams
-    versionOlder
-    ;
-in
-{
-  homepage = "https://gcc.gnu.org/";
-  license = licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
-  description = "GNU Compiler Collection, version ${version}";
-  longDescription = ''
-    The GNU Compiler Collection includes compiler front ends for C, C++,
-    Objective-C, Fortran, OpenMP for C/C++/Fortran, and Ada, as well as
-    libraries for these languages (libstdc++, libgomp,...).
-
-    GCC development is a part of the GNU Project, aiming to improve the
-    compiler used in the GNU system including the GNU/Linux variant.
-  '';
-
-  platforms = platforms.unix;
-  maintainers = if versionOlder version "5" then [ maintainers.veprbl ] else teams.gcc.members;
-
-}