summary refs log tree commit diff
path: root/pkgs/applications/editors/geany/with-vte.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/geany/with-vte.nix')
-rw-r--r--pkgs/applications/editors/geany/with-vte.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix
new file mode 100644
index 00000000000..ffffed1b853
--- /dev/null
+++ b/pkgs/applications/editors/geany/with-vte.nix
@@ -0,0 +1,6 @@
+{ runCommand, makeWrapper, geany, gnome }:
+let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name;
+in
+runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } "
+   makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib
+"