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

23 lines
599 B
Nix
Raw Normal View History

2021-04-20 22:28:35 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
name = "xplr";
2021-04-29 06:33:28 +02:00
version = "0.5.10";
2021-04-20 22:28:35 +02:00
src = fetchFromGitHub {
owner = "sayanarijit";
repo = name;
rev = "v${version}";
2021-04-29 06:33:28 +02:00
sha256 = "1gy0iv39arq2ri57iqsycp1sfnn1yafnhblr7p1my2wnmqwmd4qw";
2021-04-20 22:28:35 +02:00
};
2021-04-29 06:33:28 +02:00
cargoSha256 = "01b4dlbakkdn3pfyyphabzrmqyp7fjy6n1nfk38z3zap5zvx8ipl";
2021-04-20 22:28:35 +02: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 ];
};
}