about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorHraban Luyat <hraban@0brg.net>2023-09-04 00:46:59 -0400
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-24 19:50:52 -0300
commit949ea0426d78c433bbc8e630f254a45dc5f25e08 (patch)
treedd3f7b69ce0285be6bf049dd4104ba4d10dfdb7a /pkgs/build-support
parent026c52949b1f43200fdf7fff13289d5453a538bb (diff)
emacs: remove unused makeWrapper dependency
As far as I can tell this is unused. The wrapper script is fully custom.
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/emacs/wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix
index 6f46bb692a43e..baeeb5599bf39 100644
--- a/pkgs/build-support/emacs/wrapper.nix
+++ b/pkgs/build-support/emacs/wrapper.nix
@@ -32,7 +32,7 @@ in customEmacsPackages.withPackages (epkgs: [ epkgs.evil epkgs.magit ])
 
 */
 
-{ lib, lndir, makeWrapper, runCommand, gcc }:
+{ lib, lndir, runCommand, gcc }:
 self:
 let
   inherit (self) emacs;
@@ -50,7 +50,7 @@ runCommand
   (lib.appendToName "with-packages" emacs).name
   {
     inherit emacs explicitRequires;
-    nativeBuildInputs = [ emacs lndir makeWrapper ];
+    nativeBuildInputs = [ emacs lndir ];
 
     preferLocalBuild = true;
     allowSubstitutes = false;