-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ff7528
commit 407d863
Showing
6 changed files
with
97 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
stdenvNoCC, | ||
fetchFromGitHub, | ||
... | ||
}: | ||
stdenvNoCC.mkDerivation { | ||
pname = "spacemacs"; | ||
version = "2024-01-20-develop"; | ||
src = fetchFromGitHub { | ||
owner = "syl20bnr"; | ||
repo = "spacemacs"; | ||
rev = "11aaddf3ad7e5e3dd3b494d56221efe7b882fd72"; | ||
hash = "sha256-uozaV6igLIufvFzPrbt9En1VStDZDkSRRyxH62elK+8="; | ||
}; | ||
|
||
patches = [ | ||
./elpa-in-userdir.diff | ||
]; | ||
|
||
installPhase = '' | ||
mkdir -p $out/share/spacemacs | ||
cp -r * .lock $out/share/spacemacs | ||
''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/core/core-configuration-layer.el b/core/core-configuration-layer.el | ||
index 42224cff9..2ba1aa0d4 100644 | ||
--- a/core/core-configuration-layer.el | ||
+++ b/core/core-configuration-layer.el | ||
@@ -136,7 +136,7 @@ subdirectory of ROOT is used." | ||
"Hook executed at the end of configuration loading.") | ||
|
||
(defconst configuration-layer--elpa-root-directory | ||
- (concat spacemacs-start-directory "elpa/") | ||
+ (concat user-emacs-directory "elpa/") | ||
"Spacemacs ELPA root directory.") | ||
|
||
(defconst configuration-layer--rollback-root-directory |