summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-28 08:44:41 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-28 08:44:41 +0000
commit1228ff02b72a524da34c17c563e2172ddacc3bad (patch)
tree8e6f73ca96b7b6fc5ecd925d2487cb093321a57f /pkgs/development
parent979a8410f08116179e518a1482c58ca3dbdeffc4 (diff)
downloadnixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar.gz
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar.bz2
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar.lz
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar.xz
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.tar.zst
nixlib-1228ff02b72a524da34c17c563e2172ddacc3bad.zip
GCC 4.4: Improve `meta'.
svn path=/nixpkgs/trunk/; revision=16489
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/gcc-4.4/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/development/compilers/gcc-4.4/default.nix b/pkgs/development/compilers/gcc-4.4/default.nix
index 5ab466038e0a..e3272bc1c581 100644
--- a/pkgs/development/compilers/gcc-4.4/default.nix
+++ b/pkgs/development/compilers/gcc-4.4/default.nix
@@ -101,10 +101,19 @@ stdenv.mkDerivation ({
   passthru = { inherit langC langCC langFortran langTreelang enableMultilib; };
 
   meta = {
-    homepage = "http://gcc.gnu.org/";
-    license = "GPL/LGPL";
+    homepage = http://gcc.gnu.org/;
+    license = "GPLv3+";  # 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, Java, and Ada, as well
+      as libraries for these languages (libstdc++, libgcj, 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.
+    '';
+
     maintainers = [
       # Add your name here!
       stdenv.lib.maintainers.ludo