blob: e64721e399da1702d48d25e9f0efdaa1765f5710 (
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-06
commit = "e37266bc538b0562b9c1ffb3618ba265cb6768e9";
src = builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
sha256 = "05m13nw5chmd9gnrxz2c4yndp3w4pf4rrci84yk99zkijmkvsd6i";
};
in import src
|