From 949ea0426d78c433bbc8e630f254a45dc5f25e08 Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Mon, 4 Sep 2023 00:46:59 -0400 Subject: [PATCH] emacs: remove unused makeWrapper dependency As far as I can tell this is unused. The wrapper script is fully custom. --- pkgs/build-support/emacs/wrapper.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 6f46bb692a43..baeeb5599bf3 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;