summary refs log tree commit diff stats
path: root/user/packages/commercial-emacs/default.nix
blob: 7c0c99b74cd5f7c6f9ef176fc83ad8cdaff87578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = [ ];
  })