From db8996f0809493993a2ddb0f0000ba8af8597eaa Mon Sep 17 00:00:00 2001 From: Louis Thevenet Date: Mon, 20 Jan 2025 09:33:54 +0100 Subject: [PATCH] television: 0.9.2 -> 0.9.3 --- pkgs/by-name/te/television/package.nix | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/te/television/package.nix b/pkgs/by-name/te/television/package.nix index 52453f93333b5..3c9af991b7189 100644 --- a/pkgs/by-name/te/television/package.nix +++ b/pkgs/by-name/te/television/package.nix @@ -8,16 +8,16 @@ }: rustPlatform.buildRustPackage rec { pname = "television"; - version = "0.9.2"; + version = "0.9.3"; src = fetchFromGitHub { owner = "alexpasmantier"; repo = "television"; tag = version; - hash = "sha256-XMANif4WbI+imSYeQRlvZJYjtaVbKrD4wVx2mQ1HYHg="; + hash = "sha256-0VnDgDLsPmNaY1sjw891hm65TsE3HH9KBkkgp0TFQKg="; }; - cargoHash = "sha256-IXtmQdDO3OHBZALWQKhJVgEimvuNyAj0/7aUlnL395M="; + cargoHash = "sha256-WtB1rmgOfAnZ9OGJ8M5s5NqMm24s8gcPzlu14f2mTrE="; passthru = { tests.version = testers.testVersion { @@ -28,15 +28,13 @@ rustPlatform.buildRustPackage rec { }; meta = { - description = "Television is a blazingly fast general purpose fuzzy finder"; - + description = "Blazingly fast general purpose fuzzy finder TUI"; longDescription = '' - Television is a blazingly fast general purpose fuzzy finder TUI written - in Rust. It is inspired by the neovim telescope plugin and is designed - to be fast, efficient, simple to use and easily extensible. It is built - on top of tokio, ratatui and the nucleo matcher used by the helix editor. + Television is a fast and versatile fuzzy finder TUI. + It lets you quickly search through any kind of data source (files, git + repositories, environment variables, docker images, you name it) using a + fuzzy matching algorithm and is designed to be easily extensible. ''; - homepage = "https://github.com/alexpasmantier/television"; changelog = "https://github.com/alexpasmantier/television/releases/tag/${version}"; license = lib.licenses.mit;