aboutsummaryrefslogtreecommitdiff
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)
* 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 dd115227c29f..fe707997758e 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;};
}