summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-3
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-14 13:30:47 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-09-14 13:30:47 +0000
commit1014ca2ad55761b54366d853da45a11194d4f531 (patch)
tree50f24b302ad157afdd595134bb3629c34e01400d /pkgs/development/libraries/qt-3
parent8e5b3024035da08c35a394ba33a66a323957d293 (diff)
downloadnixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar.gz
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar.bz2
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar.lz
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar.xz
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.tar.zst
nixpkgs-1014ca2ad55761b54366d853da45a11194d4f531.zip
* stdenv.mkDerivation: add any attributes in the "passthru" attribute
  set to the result, but don't use them in the actual derivation (so
  they're not inputs).  Useful to pass through extra attributes that
  are not inputs, but should be made available to Nix expressions
  using the derivation (e.g., in assertions).

svn path=/nixpkgs/trunk/; revision=6521
Diffstat (limited to 'pkgs/development/libraries/qt-3')
-rw-r--r--pkgs/development/libraries/qt-3/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix
index dd115227c29..fe707997758 100644
--- a/pkgs/development/libraries/qt-3/default.nix
+++ b/pkgs/development/libraries/qt-3/default.nix
@@ -57,4 +57,6 @@ stdenv.mkDerivation {
     # randr.h and Xrandr.h need not be in the same prefix.
     ./xrandr.patch
   ];
+
+  passthru = {inherit mysqlSupport;};
 }