Rename emacs-modes to emacs/elisp-packages

This commit is contained in:
AndersonTorres 2021-05-20 20:03:41 -03:00
parent 788deaad9d
commit 70a5cbc298
37 changed files with 24 additions and 23 deletions

View File

@ -5,8 +5,9 @@
To update the list of packages from MELPA, To update the list of packages from MELPA,
1. Run `./update-elpa`. 1. Run `./update-elpa`.
2. Check for evaluation errors: `nix-instantiate ../../../.. -A emacs.pkgs.elpaPackages`. 2. Check for evaluation errors:
3. `git commit -m "elpa-packages $(date -Idate)" -- elpa-generated.nix` `nix-instantiate ../../../../../ -A emacs.pkgs.elpaPackages`.
3. Run `git commit -m "elpa-packages $(date -Idate)" -- elpa-generated.nix`
## Update from overlay ## Update from overlay
@ -15,8 +16,8 @@ Alternatively, run the following command:
./update-from-overlay ./update-from-overlay
It will update both melpa and elpa packages using It will update both melpa and elpa packages using
https://github.com/nix-community/emacs-overlay. It's almost https://github.com/nix-community/emacs-overlay. It's almost instantenous and
instantenous and formats commits for you. formats commits for you.
*/ */
@ -30,7 +31,7 @@ self: let
}); });
}; };
elpaBuild = import ../../../build-support/emacs/elpa.nix { elpaBuild = import ../../../../build-support/emacs/elpa.nix {
inherit lib stdenv texinfo writeText; inherit lib stdenv texinfo writeText;
inherit (self) emacs; inherit (self) emacs;
}; };

View File

@ -1,5 +1,5 @@
let let
pkgs = import ../../../.. { }; pkgs = import ../../../../.. { };
src = pkgs.fetchgit { src = pkgs.fetchgit {
url = "https://github.com/ttuegel/emacs2nix.git"; url = "https://github.com/ttuegel/emacs2nix.git";

View File

@ -4,11 +4,11 @@
To update the list of packages from MELPA, To update the list of packages from MELPA,
1. Run ./update-melpa 1. Run `./update-melpa`
2. Check for evaluation errors: 2. Check for evaluation errors:
env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacs.pkgs..melpaStablePackages env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaStablePackages
env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacs.pkgs..melpaPackages env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaPackages
3. `git commit -m "melpa-packages: $(date -Idate)" recipes-archive-melpa.json` 3. Run `git commit -m "melpa-packages: $(date -Idate)" recipes-archive-melpa.json`
## Update from overlay ## Update from overlay
@ -17,8 +17,8 @@ Alternatively, run the following command:
./update-from-overlay ./update-from-overlay
It will update both melpa and elpa packages using It will update both melpa and elpa packages using
https://github.com/nix-community/emacs-overlay. It's almost https://github.com/nix-community/emacs-overlay. It's almost instantenous and
instantenous and formats commits for you. formats commits for you.
*/ */

View File

@ -5,8 +5,8 @@
To update the list of packages from Org (ELPA), To update the list of packages from Org (ELPA),
1. Run `./update-org`. 1. Run `./update-org`.
2. Check for evaluation errors: `nix-instantiate ../../../.. -A emacs.pkgs.orgPackages`. 2. Check for evaluation errors: `nix-instantiate ../../../../.. -A emacs.pkgs.orgPackages`.
3. `git commit -m "org-packages $(date -Idate)" -- org-generated.nix` 3. Run `git commit -m "org-packages $(date -Idate)" -- org-generated.nix`
*/ */

View File

@ -8,14 +8,14 @@ export NIXPKGS_ALLOW_BROKEN=1
# You can use this to avoid running lengthy code generation jobs locally # You can use this to avoid running lengthy code generation jobs locally
curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/elpa/elpa-generated.nix curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/elpa/elpa-generated.nix
nix-instantiate ../../../.. -A emacs.pkgs.elpaPackages --show-trace nix-instantiate ../../../../../ -A emacs.pkgs.elpaPackages --show-trace
git diff --exit-code elpa-generated.nix > /dev/null || git commit -m "emacs.pkgs.elpa-packages: $(date --iso)" -- elpa-generated.nix git diff --exit-code elpa-generated.nix > /dev/null || git commit -m "emacs.pkgs.elpa-packages: $(date --iso)" -- elpa-generated.nix
curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/org/org-generated.nix curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/org/org-generated.nix
nix-instantiate ../../../.. -A emacs.pkgs.orgPackages --show-trace nix-instantiate ../../../../../ -A emacs.pkgs.orgPackages --show-trace
git diff --exit-code org-generated.nix > /dev/null || git commit -m "emacs.pkgs.org-packages: $(date --iso)" -- org-generated.nix git diff --exit-code org-generated.nix > /dev/null || git commit -m "emacs.pkgs.org-packages: $(date --iso)" -- org-generated.nix
curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/melpa/recipes-archive-melpa.json curl -s -O https://raw.githubusercontent.com/nix-community/emacs-overlay/master/repos/melpa/recipes-archive-melpa.json
nix-instantiate --show-trace ../../../../ -A emacs.pkgs.melpaStablePackages nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaStablePackages
nix-instantiate --show-trace ../../../../ -A emacs.pkgs.melpaPackages nix-instantiate --show-trace ../../../../../ -A emacs.pkgs.melpaPackages
git diff --exit-code recipes-archive-melpa.json > /dev/null || git commit -m "emacs.pkgs.melpa-packages: $(date --iso)" -- recipes-archive-melpa.json git diff --exit-code recipes-archive-melpa.json > /dev/null || git commit -m "emacs.pkgs.melpa-packages: $(date --iso)" -- recipes-archive-melpa.json

View File

@ -1,5 +1,5 @@
let let
pkgs = import ../../../.. {}; pkgs = import ../../../../.. {};
emacsEnv = pkgs.emacs.pkgs.withPackages (epkgs: let emacsEnv = pkgs.emacs.pkgs.withPackages (epkgs: let

View File

@ -25,21 +25,21 @@
let let
mkElpaPackages = { pkgs, lib }: import ../applications/editors/emacs-modes/elpa-packages.nix { mkElpaPackages = { pkgs, lib }: import ../applications/editors/emacs/elisp-packages/elpa-packages.nix {
inherit (pkgs) stdenv texinfo writeText; inherit (pkgs) stdenv texinfo writeText;
inherit lib; inherit lib;
}; };
# Contains both melpa stable & unstable # Contains both melpa stable & unstable
melpaGeneric = { pkgs, lib }: import ../applications/editors/emacs-modes/melpa-packages.nix { melpaGeneric = { pkgs, lib }: import ../applications/editors/emacs/elisp-packages/melpa-packages.nix {
inherit lib pkgs; inherit lib pkgs;
}; };
mkOrgPackages = { lib }: import ../applications/editors/emacs-modes/org-packages.nix { mkOrgPackages = { lib }: import ../applications/editors/emacs/elisp-packages/org-packages.nix {
inherit lib; inherit lib;
}; };
mkManualPackages = { pkgs, lib }: import ../applications/editors/emacs-modes/manual-packages.nix { mkManualPackages = { pkgs, lib }: import ../applications/editors/emacs/elisp-packages/manual-packages.nix {
inherit lib pkgs; inherit lib pkgs;
}; };