3555df018f
Change-Id: Ief4fb21082011d4056af77b7dae06edf33bd5b2f Reviewed-on: https://cl.tvl.fyi/c/depot/+/3403 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-08-24
|
|
commit = "b57f95c78042800bbd2b6b3c6c1f9fb85221507e";
|
|
src = builtins.fetchTarball {
|
|
url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
|
|
sha256 = "17xv9c3x5930zy6hbqk20pwk601w5xnrzpg5gsnrkzl1z726qrn1";
|
|
};
|
|
in import src
|