summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-05-18 08:52:50 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-05-18 08:53:51 -0500
commit04622fe3baceba49042a0b5e2c89d309e93d8928 (patch)
treee7b6d0cead11d5ca5f026e48aad0d6ff82375403
parent5b7837c0d37622b6ad1888c669039c7dfd5c6229 (diff)
downloadnixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar.gz
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar.bz2
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar.lz
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar.xz
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.tar.zst
nixpkgs-04622fe3baceba49042a0b5e2c89d309e93d8928.zip
firefoxWrapper: fix typo
Accidentally tried to hardlink a directory! Should have been `ln -s` all
along. Affects non-Firefox browsers that use firefoxWrapper.
-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 a2134afdcf7..409f7d29ba2 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -60,7 +60,7 @@ stdenv.mkDerivation {
 
     if [ -e "${browser}/share/icons" ]; then
         mkdir -p "$out/share"
-        ln "${browser}/share/icons" "$out/share/icons"
+        ln -s "${browser}/share/icons" "$out/share/icons"
     else
         mkdir -p "$out/share/icons/hicolor/128x128/apps"
         ln -s "$out/lib/$libdirbasename/browser/icons/mozicon128.png" \