nixpkgs/pkgs/applications/misc/xplr/default.nix
2021-07-06 11:24:45 +05:30

23 lines
622 B
Nix

{ lib, stdenv, rustPlatform, fetchCrate, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "xplr";
version = "0.14.4";
src = fetchCrate {
inherit pname version;
sha256 = "1jfclwpip4xvwkvz5g0fb3v04pdnk3ddvkdll0yr7wm0g6p44xfd";
};
buildInputs = lib.optional stdenv.isDarwin libiconv;
cargoSha256 = "06iwx3s7h6l9kvd17hx0ihy6zrz4jbfjmdlkyij2fs0fhvas110x";
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 ];
};
}