diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-18T20·28+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-18T20·32+0000 |
commit | 1205b42ee0436287fea654510db9323e8d59a395 (patch) | |
tree | c1c143f4823142212b5742c176bbe187723b36fa /users/tazjin/emacs/default.nix | |
parent | 54140b34c5ce5e6bac5c8193d891b622df51b6ca (diff) |
fix(tazjin/emacs): add dwebp to Emacs' $PATH r/3297
Change-Id: I20723b7d98a24e3f06810f0a0ede8a05c80156a8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4405 Reviewed-by: tazjin <mail@tazj.in> Autosubmit: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/emacs/default.nix')
-rw-r--r-- | users/tazjin/emacs/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/tazjin/emacs/default.nix b/users/tazjin/emacs/default.nix index 381f246aa925..e888e0769819 100644 --- a/users/tazjin/emacs/default.nix +++ b/users/tazjin/emacs/default.nix @@ -18,7 +18,10 @@ let currentTelega = epkgs: epkgs.melpaPackages.telega; # $PATH for binaries that need to be available to Emacs - emacsBinPath = lib.makeBinPath [ (currentTelega pkgs.emacsPackages) ]; + emacsBinPath = lib.makeBinPath [ + (currentTelega pkgs.emacsPackages) + pkgs.libwebp # for dwebp, required by telega + ]; identity = x: x; |