summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/firefox/wrapper.nix
diff options
context:
space:
mode:
authorWei Tang <hi@that.world>2016-05-08 01:44:37 +0200
committerWei Tang <hi@that.world>2016-05-08 05:58:02 +0200
commit4d15758984b6fca164549dc3957a8f7571b26452 (patch)
tree80f24ead2d511ff60d54d4bc4e87392ba52a0822 /pkgs/applications/networking/browsers/firefox/wrapper.nix
parent9e0d0423fe4a97d339addc8b7bd7f8ac8677c2a9 (diff)
downloadnixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar.gz
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar.bz2
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar.lz
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar.xz
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.tar.zst
nixlib-4d15758984b6fca164549dc3957a8f7571b26452.zip
firefox: Fix build due to commit #ab0a0c
Diffstat (limited to 'pkgs/applications/networking/browsers/firefox/wrapper.nix')
-rw-r--r--pkgs/applications/networking/browsers/firefox/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index d859d9a74ec3..64b5b6f44b1f 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -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; };