Merge pull request #315949 from atorres1985-contrib/emacs-migrate-build-support

emacs: migrate pkgs/build-support/emacs to pkgs/applications/editors/…
This commit is contained in:
Lin Jian
2024-07-06 23:17:40 +08:00
committed by GitHub
17 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -34,9 +34,9 @@
- nixos/modules/services/editors/emacs.nix
- nixos/modules/services/editors/emacs.xml
- nixos/tests/emacs-daemon.nix
- pkgs/applications/editors/emacs/build-support/**/*
- pkgs/applications/editors/emacs/elisp-packages/**/*
- pkgs/applications/editors/emacs/**/*
- pkgs/build-support/emacs/**/*
- pkgs/top-level/emacs-packages.nix
"6.topic: Enlightenment DE":
@@ -32,7 +32,7 @@ self: let
});
};
elpaBuild = import ../../../../build-support/emacs/elpa.nix {
elpaBuild = import ../build-support/elpa.nix {
inherit lib stdenv texinfo writeText gcc;
inherit (self) emacs;
};
@@ -32,7 +32,7 @@ self: let
});
};
elpaBuild = import ../../../../build-support/emacs/elpa.nix {
elpaBuild = import ../build-support/elpa.nix {
inherit lib stdenv texinfo writeText gcc;
inherit (self) emacs;
};
+4 -1
View File
@@ -1288,7 +1288,10 @@ with pkgs;
mpsolve = libsForQt5.callPackage ../applications/science/math/mpsolve { };
nixBufferBuilders = import ../build-support/emacs/buffer.nix { inherit lib writeText; inherit (emacs.pkgs) inherit-local; };
nixBufferBuilders = import ../applications/editors/emacs/build-support/buffer.nix {
inherit lib writeText;
inherit (emacs.pkgs) inherit-local;
};
nix-gitignore = callPackage ../build-support/nix-gitignore { };
+3 -3
View File
@@ -47,7 +47,7 @@ let
inherit lib pkgs;
};
emacsWithPackages = { pkgs, lib }: pkgs.callPackage ../build-support/emacs/wrapper.nix {
emacsWithPackages = { pkgs, lib }: pkgs.callPackage ../applications/editors/emacs/build-support/wrapper.nix {
inherit (pkgs.xorg) lndir;
inherit lib;
};
@@ -77,11 +77,11 @@ in makeScope pkgs'.newScope (self: makeOverridable ({
};
});
trivialBuild = pkgs.callPackage ../build-support/emacs/trivial.nix {
trivialBuild = pkgs.callPackage ../applications/editors/emacs/build-support/trivial.nix {
inherit (self) emacs;
};
melpaBuild = pkgs.callPackage ../build-support/emacs/melpa.nix {
melpaBuild = pkgs.callPackage ../applications/editors/emacs/build-support/melpa.nix {
inherit (self) emacs;
};