mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #74936 from acowley/emacs27-seq
emacs: do not use seq package from elpa for emacs >= 27
This commit is contained in:
commit
77d1b6cb9a
1 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,9 @@ self: let
|
||||||
cl-lib = null; # builtin
|
cl-lib = null; # builtin
|
||||||
tle = null; # builtin
|
tle = null; # builtin
|
||||||
advice = null; # builtin
|
advice = null; # builtin
|
||||||
|
seq = if lib.versionAtLeast self.emacs.version "27"
|
||||||
|
then null
|
||||||
|
else super.seq;
|
||||||
};
|
};
|
||||||
|
|
||||||
elpaPackages = super // overrides;
|
elpaPackages = super // overrides;
|
||||||
|
|
Loading…
Reference in a new issue