Merge pull request #15299 from sorpaas/fix-firefox2

firefox: Use refactored makeSearchPathOutput
This commit is contained in:
zimbatm 2016-05-08 13:40:13 +01:00
commit 3af2f6008d
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ stdenv.mkDerivation {
# Let each plugin tell us (through its `mozillaPlugin') attribute
# where to find the plugin in its tree.
plugins = map (x: x + x.mozillaPlugin) plugins;
libs = lib.makeLibraryPath libs + ":" + lib.makeSearchPathOutputs "lib64" ["lib"] libs;
libs = lib.makeLibraryPath libs + ":" + lib.makeSearchPathOutput "lib" "lib64" libs;
gtk_modules = map (x: x + x.gtkModule) gtk_modules;
passthru = { unwrapped = browser; };