Merge pull request #115592 from terlar/emacs28-project

emacs: do not use project package from elpa for emacs >= 28
This commit is contained in:
adisbladis 2021-03-09 22:01:52 +02:00 committed by GitHub
commit 95047611af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,9 @@ self: let
seq = if lib.versionAtLeast self.emacs.version "27"
then null
else super.seq;
project = if lib.versionAtLeast self.emacs.version "28"
then null
else super.project;
};
elpaPackages = super // overrides;