summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
diff options
context:
space:
mode:
authorRam Kromberg <ramkromberg@mail.com>2016-07-19 09:07:44 +0300
committerFranz Pletz <fpletz@fnordicwalking.de>2016-07-19 08:07:44 +0200
commitba0224fa17c0520555ffde9d1c540c4623d22e6a (patch)
tree8a20e7a7b1589b8b7d7091bf58a49a4e8665f654 /pkgs/applications/editors/geany
parent039f0e5cb044a3610252f139283cef32850091e2 (diff)
downloadnixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar.gz
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar.bz2
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar.lz
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar.xz
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.tar.zst
nixpkgs-ba0224fa17c0520555ffde9d1c540c4623d22e6a.zip
geany-with-vte: fix desktop shortcut and man pages (#16759)
Diffstat (limited to 'pkgs/applications/editors/geany')
-rw-r--r--pkgs/applications/editors/geany/with-vte.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix
index ffffed1b853..679125b5ec4 100644
--- a/pkgs/applications/editors/geany/with-vte.nix
+++ b/pkgs/applications/editors/geany/with-vte.nix
@@ -2,5 +2,7 @@
 let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name;
 in
 runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } "
+   mkdir -p $out
+   ln -s ${geany}/share $out
    makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib
 "