fzf-make: 0.47.0 -> 0.52.0 (#368604)

This commit is contained in:
Christian Kögler
2024-12-30 12:28:29 +01:00
committed by GitHub
+6 -4
View File
@@ -10,16 +10,18 @@
rustPlatform.buildRustPackage rec {
pname = "fzf-make";
version = "0.47.0";
version = "0.52.0";
src = fetchFromGitHub {
owner = "kyu08";
repo = "fzf-make";
rev = "v${version}";
hash = "sha256-EqxMsxQpcoPPvWzzl/1JcekLJljmxJcoubXgAMqMhXY=";
hash = "sha256-KJdGUo7qSMIDJ8jvcBX/cla8pQkB/EGytIP0YzV/3fY=";
};
cargoHash = "sha256-GjOeiusc0zVEBOuEfsuy/MABDO1c5x+mA/twwm3yZF8=";
cargoHash = "sha256-nrttuY9x61aE3RJOtbUWZbqOX6ZRyghQSruu5EdX470=";
useFetchCargoVendor = true;
nativeBuildInputs = [ makeBinaryWrapper ];
@@ -31,7 +33,7 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "Fuzzy finder for Makefile";
homepage = "https://github.com/kyu08/fzf-make";
inherit (src.meta) homepage;
changelog = "https://github.com/kyu08/fzf-make/releases/tag/${src.rev}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda sigmanificient ];