diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-16T03·08+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-16T03·08+0100 |
commit | d97cf260a2547a53853dafee896176c5814ef482 (patch) | |
tree | 22194b6dca32259b4cf179b2c703b1e88a10ab7a /third_party/emacs/vterm.nix | |
parent | a078cabc7123ef9082e01c8eab29adc34f4b0399 (diff) |
refactor(tools/emacs): Move third-party overrides to //third_party r/719
EXWM and vterm are overridden, but this shouldn't be happening outside of //third_party
Diffstat (limited to 'third_party/emacs/vterm.nix')
-rw-r--r-- | third_party/emacs/vterm.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/emacs/vterm.nix b/third_party/emacs/vterm.nix new file mode 100644 index 000000000000..674a919c99f0 --- /dev/null +++ b/third_party/emacs/vterm.nix @@ -0,0 +1,11 @@ +# Overridden vterm to fetch a newer version +{ pkgs, ... }: + +pkgs.emacsPackages.vterm.overrideAttrs(_: { + src = pkgs.fetchFromGitHub{ + owner = "akermu"; + repo = "emacs-libvterm"; + rev = "58b4cc40ee9872a08fc5cbfee78ad0e195a3306c"; + sha256 = "1w5yfl8nq4k7xyldf0ivzv36vhz3dwdzk6q2vs3xwpx6ljy52px6"; + }; +}) |