emacs: remove unused makeWrapper dependency

As far as I can tell this is unused. The wrapper script is fully custom.
This commit is contained in:
Hraban Luyat 2023-09-04 00:46:59 -04:00 committed by Anderson Torres
parent 026c52949b
commit 949ea0426d

View file

@ -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;