3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/xplr/default.nix

23 lines
599 B
Nix
Raw Normal View History

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