xplr/default.nix
Arijit Basu fa37cd1c10 Improve search and filter
Concern:
Using `ResetNodeFilters` to clear the filters while searching or exiting
from search unexpectedly resets the `show hidden` mode because the
action not only removes the target filter, it resets all the other
filters as well.

Solution:
Implement `RemoveNodeFilterFromInput` to be able to clear or remove
target filters without having to reset it.
2021-04-08 08:01:10 +05:30

14 lines
397 B
Nix

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.8";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.8.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
}