blob: 1dba4a739303d4cf427a3cd4447321c75a74d605 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Emacs overlay from https://github.com/nix-community/emacs-overlay
{ ... }:
let
# from 2022-01-04
commit = "a463c3bcbb04b4b744a259587081786ded8fd5b5";
src = builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
sha256 = "1b7rmshf1wc9wcml7jlzggdzilj644brk5m49fry6lv53vqmykjq";
};
in
import src
|