blob: 0482523ff03a56f427c0e5bb33527dc8a0a1ea87 (
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-11
commit = "3fbe6cf3459cf955e188444b68f085f7a45b6ffa";
src = builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
sha256 = "0hm7lkqxh08nq074fgn0naqr6lg12qqxwsr3i4wpvdskmdbhb5i5";
};
in import src
|