From 21e3d56b2736a2d0f6e21a2e1cebe2fff5e3da76 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 25 Sep 2025 21:32:09 +0200 Subject: [PATCH] git-recent: replace `makeWrapper` with `makeBinaryWrapper` --- pkgs/applications/version-management/git-recent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-recent/default.nix b/pkgs/applications/version-management/git-recent/default.nix index 8c62e83a33b7..d5f8abea15e9 100644 --- a/pkgs/applications/version-management/git-recent/default.nix +++ b/pkgs/applications/version-management/git-recent/default.nix @@ -4,7 +4,7 @@ git, less, fetchFromGitHub, - makeWrapper, + makeBinaryWrapper, # util-linuxMinimal is included because we need the column command util-linux, }: @@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-b6AWLEXCOza+lIHlvyYs3M6yHGr2StYXzl7OsA9gv/k="; }; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeBinaryWrapper ]; buildPhase = null;