summary refs log tree commit diff
path: root/pkgs/build-support/gcc-wrapper
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-30 11:42:15 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-30 11:42:15 +0000
commitcdf4cf5c2353107d4783d585d6285d4c5a83d2ed (patch)
treee6b57a26ebe38d89e2ab680b7e34be1543a8f914 /pkgs/build-support/gcc-wrapper
parent785e9630f0dbdefed74327adbdc2530fc9502cf9 (diff)
parentd2419bcceec558a12b0c3b42c583f89325231045 (diff)
downloadnixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar.gz
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar.bz2
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar.lz
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar.xz
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.tar.zst
nixlib-cdf4cf5c2353107d4783d585d6285d4c5a83d2ed.zip
* Sync with the trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=16094
Diffstat (limited to 'pkgs/build-support/gcc-wrapper')
-rw-r--r--pkgs/build-support/gcc-wrapper/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/gcc-wrapper/default.nix b/pkgs/build-support/gcc-wrapper/default.nix
index 91b417060996..d517a472d747 100644
--- a/pkgs/build-support/gcc-wrapper/default.nix
+++ b/pkgs/build-support/gcc-wrapper/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
     let gcc_ = if gcc != null then gcc else {}; in
     (if gcc_ ? meta then removeAttrs gcc.meta ["priority"] else {}) //
     { description =
-        stdenv.lib.getAttr ["meta" "description"] "System C compiler" gcc_
+        stdenv.lib.attrByPath ["meta" "description"] "System C compiler" gcc_
         + " (wrapper script)";
     };