nixpkgs/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-05-02 13:40:58 +02:00
version = "0.5.12";
2021-04-20 22:28:35 +02:00
src = fetchFromGitHub {
owner = "sayanarijit";
repo = name;
rev = "v${version}";
2021-05-02 13:40:58 +02:00
sha256 = "0dmqa56sxyvrq03rpf9yczp75zk44s79ilz6kbykdghp0d9lyldf";
2021-04-20 22:28:35 +02:00
};
2021-05-02 13:40:58 +02:00
cargoSha256 = "1mb1rfax91cbi2wvshl8jsfykx9kfwff8fkqa7rc4plqxnz0qxkx";
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 ];
};
}