dfc7d2c020
Change-Id: I794738b8e27404e9b8de2f04d980b94b73dae764 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3708 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
11 lines
362 B
Nix
11 lines
362 B
Nix
# Emacs overlay from https://github.com/nix-community/emacs-overlay
|
|
{ ... }:
|
|
|
|
let
|
|
# from 2021-10-10
|
|
commit = "de51ad003df13d41a1107a1ed766eb226ef9382c";
|
|
src = builtins.fetchTarball {
|
|
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
|
|
sha256 = "1spfd7wx7lz48kk7cs91gjx6zhvlliqc6376rxkc4idfb0q43xih";
|
|
};
|
|
in import src
|