blob: a469390dece74b68ecb370d5500818873e025a6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Emacs overlay from https://github.com/nix-community/emacs-overlay
{ ... }:
let
# from 2021-08-24
commit = "b57f95c78042800bbd2b6b3c6c1f9fb85221507e";
src = builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
sha256 = "17xv9c3x5930zy6hbqk20pwk601w5xnrzpg5gsnrkzl1z726qrn1";
};
in import src
|