refactor(tools/emacs): Move third-party overrides to //third_party

EXWM and vterm are overridden, but this shouldn't be happening outside
of //third_party
This commit is contained in:
Vincent Ambo 2020-05-16 04:08:17 +01:00
parent a078cabc71
commit d97cf260a2
3 changed files with 27 additions and 23 deletions

11
third_party/emacs/vterm.nix vendored Normal file
View file

@ -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";
};
})