{ lib , rustPlatform , fetchFromGitHub , makeBinaryWrapper , runtimeShell , bat , gnugrep , gnumake }: rustPlatform.buildRustPackage rec { pname = "fzf-make"; version = "0.27.0"; src = fetchFromGitHub { owner = "kyu08"; repo = "fzf-make"; rev = "v${version}"; hash = "sha256-OgvPUk5q7DB9hakZzCUM2dlXMQzE/CGpg4pMDQCk7k0="; }; cargoHash = "sha256-MTOafmrlaW8WNUqsG2c/WnbG9ZKbq9zdou6buB4Qo/k="; nativeBuildInputs = [ makeBinaryWrapper ]; postInstall = '' wrapProgram $out/bin/fzf-make \ --set SHELL ${runtimeShell} \ --suffix PATH : ${lib.makeBinPath [ bat gnugrep gnumake ]} ''; meta = with lib; { description = "Fuzzy finder for Makefile"; homepage = "https://github.com/kyu08/fzf-make"; changelog = "https://github.com/kyu08/fzf-make/releases/tag/${src.rev}"; license = licenses.mit; maintainers = with maintainers; [ figsoda sigmanificient ]; mainProgram = "fzf-make"; }; }