xplr 0.3.13

A hackable, minimal, fast TUI file explorer, stealing ideas from nnn and fzf
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
with import <nixpkgs> {};

# Run nix-build and update the src url, version and sha256 when new version

rustPlatform.buildRustPackage rec {
  name = "xplr";
  version = "0.3.13";
  src = fetchTarball
    ("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.13.tar.gz");
  buildInputs = [ cargo ];
  checkPhase = "";
  cargoSha256 = "0000000000000000000000000000000000000000000000000000";
}