{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }: rustPlatform.buildRustPackage rec { pname = "xplr"; version = "0.17.2"; src = fetchFromGitHub { owner = "sayanarijit"; repo = pname; rev = "v${version}"; sha256 = "sha256-iy03ucPFbFL/rRILt9P+NtfdGoIpjutbUDrykpZkAtk="; }; buildInputs = lib.optional stdenv.isDarwin libiconv; cargoSha256 = "sha256-VeV/vsM2XCg9h8KoYmniCmo/MJHjwcfn/tUCoZ1rKzM="; meta = with lib; { description = "A hackable, minimal, fast TUI file explorer"; homepage = "https://github.com/sayanarijit/xplr"; license = licenses.mit; maintainers = with maintainers; [ sayanarijit suryasr007 ]; }; }