lol

geany: add geany-with-vte to use the terminal

+7
+6
pkgs/applications/editors/geany/with-vte.nix
··· 1 + { runCommand, makeWrapper, geany, gnome }: 2 + let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name; 3 + in 4 + runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } " 5 + makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib 6 + "
+1
pkgs/top-level/all-packages.nix
··· 11374 11374 fvwm = callPackage ../applications/window-managers/fvwm { }; 11375 11375 11376 11376 geany = callPackage ../applications/editors/geany { }; 11377 + geany-with-vte = callPackage ../applications/editors/geany/with-vte.nix { }; 11377 11378 11378 11379 gksu = callPackage ../applications/misc/gksu { }; 11379 11380