Skip to content

Commit

Permalink
xplr: init at 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Apr 21, 2021
1 parent 583c3e4 commit 314da8c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/applications/misc/xplr/default.nix
@@ -0,0 +1,22 @@
{ lib, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.5.4";

src = fetchFromGitHub {
owner = "sayanarijit";
repo = name;
rev = "v${version}";
sha256 = "0m28jhkvz46psxbv8g34v34m1znvj51gqizaxlmxbgh9fj3vyfdb";
};

cargoSha256 = "0q2k8bs32vxqbnjdh674waagpzpb9rxlwi4nggqlbzcmbqsy8n6k";

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9272,6 +9272,8 @@ in

xe = callPackage ../tools/system/xe { };

xplr = callPackage ../applications/misc/xplr {};

testdisk = libsForQt5.callPackage ../tools/system/testdisk { };

testdisk-qt = testdisk.override { enableQt = true; };
Expand Down

0 comments on commit 314da8c

Please sign in to comment.