all repos — nixfiles @ 4d02c68db272b0585ea3db2aa358ded296dbe7e9

System and user configuration, managed by nix and home-manager

Emacs: use commercial-emacs (currently without tree-sitter)

Alan Pearce
commit

4d02c68db272b0585ea3db2aa358ded296dbe7e9

parent

b20f4ef30f9f0affd761f92e5759e673c69fba6a

1 file changed, 21 insertions(+), 0 deletions(-)

changed files
A user/packages/commercial-emacs/default.nix
@@ -0,0 +1,21 @@
+{ lib +, fetchFromGitHub + +, emacs + +, withTreeSitter ? true +}: +(emacs.override { + inherit withTreeSitter; + nativeComp = false; +}).overrideAttrs + (old: rec { + pname = "commercial-emacs"; + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = "50771bb6107e32048187ab93f224cd307c733a33"; + sha256 = "03r4aqiljqg5g07jlbjp5sld0vg122gpb5ah4mpq2hl239qgxc3b"; + }; + patches = [ ]; + })