blob: ed62c3499ded8b668baf09f330afef28ac08dd46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
final: prev: {
emacs = (prev.emacs.override {
withXwidgets = false;
withX = true;
withGTK3 = false;
withAthena = false;
}).overrideAttrs (attrs: with builtins; with attrs; {
configureFlags = filter (f: !elem f
["--with-x-toolkit=lucid" "--with-toolkit-scroll-bars"])
configureFlags ++ ["--with-x-toolkit=no" "--without-toolkit-scroll-bars"];
version = "31.0.50";
patches = patches ++ [./emacs-alpha-dividers.patch];
src = prev.fetchFromGitHub {
owner = "emacs-mirror";
repo = "emacs";
rev = "abcc099c732489354f8f2be70b9a919fffeb3d84";
hash = "sha256-uOF881PUJ54OHnITU5a9ftuxyS9YbatYXPKOEfZYmPA=";
};
});
}
|