tvl-depot/third_party/overlays/emacs.nix
Vincent Ambo 24fca8c910 feat(3p/overlays): Bump emacs overlay to 2021-09-27
Change-Id: If0e43f62b6f6adec32efddcad9c1a887d3ef5ece
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3646
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Reviewed-by: sterni <sternenseemann@systemli.org>
2021-09-27 20:30:52 +00:00

11 lines
362 B
Nix

# Emacs overlay from https://github.com/nix-community/emacs-overlay
{ ... }:
let
# from 2021-09-27
commit = "61252f6d58c14eae1d67724c515bc27006df7999";
src = builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
sha256 = "1d8869ld8zfq5q1gwx2iknikyymf6nfazrcm9agis1lab22ppp8r";
};
in import src