fix(emacs): Fix sly package (again)
This commit is contained in:
parent
93e6146404
commit
40027f008f
1 changed files with 14 additions and 1 deletions
15
emacs.nix
15
emacs.nix
|
@ -49,6 +49,19 @@ exwm = melpaBuild {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
slyFixed = sly.overrideAttrs(_: {
|
||||||
|
recipe = builtins.toFile "recipe" ''
|
||||||
|
(sly :repo "joaotavora/sly"
|
||||||
|
:fetcher github
|
||||||
|
:files ("*.el"
|
||||||
|
("lib" "lib/*")
|
||||||
|
("contrib" "contrib/*")
|
||||||
|
"doc/*.texi"
|
||||||
|
"doc/*.info"
|
||||||
|
"doc/dir"))
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
in emacsWithPackages(epkgs:
|
in emacsWithPackages(epkgs:
|
||||||
# Actual ELPA packages (the enlightened!)
|
# Actual ELPA packages (the enlightened!)
|
||||||
(with epkgs.elpaPackages; [
|
(with epkgs.elpaPackages; [
|
||||||
|
@ -106,7 +119,7 @@ in emacsWithPackages(epkgs:
|
||||||
restclient
|
restclient
|
||||||
rust-mode
|
rust-mode
|
||||||
s
|
s
|
||||||
# sly
|
slyFixed
|
||||||
smartparens
|
smartparens
|
||||||
string-edit
|
string-edit
|
||||||
swiper
|
swiper
|
||||||
|
|
Loading…
Reference in a new issue