summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorners <ners@gmx.ch>2023-07-17 14:56:11 +0200
committerners <ners@gmx.ch>2023-07-17 14:56:11 +0200
commit1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020 (patch)
tree0d9b012431fbee917934fdaa04ba13a15aaa77b9 /pkgs/applications/editors/neovim
parentda4daed57aef4e790b1dbebbf72811eb617791a3 (diff)
downloadnixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar.gz
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar.bz2
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar.lz
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar.xz
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.tar.zst
nixpkgs-1c52dbd0f1a46f6a0eec88f2d54f746ee90aa020.zip
neovim-qt: fix desktop icon passthrough
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/qt.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/qt.nix b/pkgs/applications/editors/neovim/qt.nix
index 1da7e7e966e..728c364d400 100644
--- a/pkgs/applications/editors/neovim/qt.nix
+++ b/pkgs/applications/editors/neovim/qt.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
     # link .desktop file
     mkdir -p $out/share/pixmaps
     ln -s ${unwrapped}/share/applications $out/share/applications
-    ln -s ${unwrapped}/share/pixmaps/nvim-qt.png $out/share/pixmaps/nvim-qt.png
+    ln -s ${unwrapped}/share/icons $out/share/icons
   '';
 
   preferLocalBuild = true;