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

23 lines
600 B
Nix
Raw Normal View History

2021-04-20 20:28:35 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
2021-05-08 15:05:47 +00:00
pname = "xplr";
2021-05-10 01:32:14 +00:00
version = "0.8.4";
2021-04-20 20:28:35 +00:00
src = fetchFromGitHub {
owner = "sayanarijit";
2021-05-08 15:05:47 +00:00
repo = pname;
2021-04-20 20:28:35 +00:00
rev = "v${version}";
2021-05-10 01:32:14 +00:00
sha256 = "00kmmdwwf9cll25bkszgin2021ggf9b28jlcpicin5kgw4iwlhkj";
2021-04-20 20:28:35 +00:00
};
2021-05-10 01:32:14 +00:00
cargoSha256 = "1j43vwb885h355wdmjijz1qpkqn1dmb93hwi6vc035vkbbxs1g4r";
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 ];
};
}