Unverified Commit 73425503 authored by Seth Flynn's avatar Seth Flynn Committed by GitHub
Browse files

television: 0.9.2 -> 0.9.3 (#375283)

parents d8031564 db8996f0
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -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;