nixpkgs/pkgs/applications/misc/xplr/default.nix

23 lines
622 B
Nix
Raw Normal View History

2021-05-15 15:49:52 +00:00
{ lib, stdenv, rustPlatform, fetchCrate, libiconv }:
2021-04-20 20:28:35 +00:00
rustPlatform.buildRustPackage rec {
2021-05-08 15:05:47 +00:00
pname = "xplr";
2021-07-06 05:54:45 +00:00
version = "0.14.4";
2021-04-20 20:28:35 +00:00
2021-05-15 15:49:52 +00:00
src = fetchCrate {
inherit pname version;
2021-07-06 05:54:45 +00:00
sha256 = "1jfclwpip4xvwkvz5g0fb3v04pdnk3ddvkdll0yr7wm0g6p44xfd";
2021-04-20 20:28:35 +00:00
};
buildInputs = lib.optional stdenv.isDarwin libiconv;
2021-07-06 05:54:45 +00:00
cargoSha256 = "06iwx3s7h6l9kvd17hx0ihy6zrz4jbfjmdlkyij2fs0fhvas110x";
2021-04-20 20:28:35 +00:00
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 ];
};
}