mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-10 07:10:45 +00:00
fa37cd1c10
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.
14 lines
397 B
Nix
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";
|
|
}
|