summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc-4.0
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-03-10 16:12:46 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-03-10 16:12:46 +0000
commitbaec8f5b38e83a456eebdf742834efc2c22386c6 (patch)
treeecd654568b44dba0a8a0fb0c6abebbc7b1c5feda /pkgs/development/compilers/gcc-4.0
parent4c63a4a97a56d992ccc83e77ce477d3b22906240 (diff)
downloadnixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar.gz
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar.bz2
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar.lz
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar.xz
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.tar.zst
nixpkgs-baec8f5b38e83a456eebdf742834efc2c22386c6.zip
* stdenv.mkDerivation now takes an optional attribute "meta" that
  contains arbitrary information about a package, like this:

  meta = {
    homepage = "http://gcc.gnu.org/";
    license = "GPL/LGPL";
    description = "GNU Compiler Collection, 4.0.x";
  };

  The "meta" attribute is not passed to the actual derivation
  operation, so it's not a dependency --- changes to "meta" attributes
  don't trigger a recompilation.

  Now we have to standardise some useful attributes ;-)

svn path=/nixpkgs/branches/usability/; revision=5024
Diffstat (limited to 'pkgs/development/compilers/gcc-4.0')
-rw-r--r--pkgs/development/compilers/gcc-4.0/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/compilers/gcc-4.0/default.nix b/pkgs/development/compilers/gcc-4.0/default.nix
index bed212e964b..8363c10edb4 100644
--- a/pkgs/development/compilers/gcc-4.0/default.nix
+++ b/pkgs/development/compilers/gcc-4.0/default.nix
@@ -15,4 +15,10 @@ stdenv.mkDerivation {
   # !!! apply only if noSysDirs is set
   patches = [./no-sys-dirs.patch];
   inherit noSysDirs langC langCC langF77 profiledCompiler;
+
+  meta = {
+    homepage = "http://gcc.gnu.org/";
+    license = "GPL/LGPL";
+    description = "GNU Compiler Collection, 4.0.x";
+  };
 }