Merge pull request #119976 from sayanarijit/add/xplr
This commit is contained in:
commit
d235056d6d
@ -8767,6 +8767,12 @@
|
|||||||
githubId = 8534888;
|
githubId = 8534888;
|
||||||
name = "Savanni D'Gerinel";
|
name = "Savanni D'Gerinel";
|
||||||
};
|
};
|
||||||
|
sayanarijit = {
|
||||||
|
email = "sayanarijit@gmail.com";
|
||||||
|
github = "sayanarijit";
|
||||||
|
githubId = 11632726;
|
||||||
|
name = "Arijit Basu";
|
||||||
|
};
|
||||||
sb0 = {
|
sb0 = {
|
||||||
email = "sb@m-labs.hk";
|
email = "sb@m-labs.hk";
|
||||||
github = "sbourdeauducq";
|
github = "sbourdeauducq";
|
||||||
@ -9479,6 +9485,12 @@
|
|||||||
githubId = 187109;
|
githubId = 187109;
|
||||||
name = "Bjarki Ágúst Guðmundsson";
|
name = "Bjarki Ágúst Guðmundsson";
|
||||||
};
|
};
|
||||||
|
suryasr007 = {
|
||||||
|
email = "94suryateja@gmail.com";
|
||||||
|
github = "suryasr007";
|
||||||
|
githubId = 10533926;
|
||||||
|
name = "Surya Teja V";
|
||||||
|
};
|
||||||
suvash = {
|
suvash = {
|
||||||
email = "suvash+nixpkgs@gmail.com";
|
email = "suvash+nixpkgs@gmail.com";
|
||||||
github = "suvash";
|
github = "suvash";
|
||||||
|
22
pkgs/applications/misc/xplr/default.nix
Normal file
22
pkgs/applications/misc/xplr/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -9295,6 +9295,8 @@ in
|
|||||||
|
|
||||||
xe = callPackage ../tools/system/xe { };
|
xe = callPackage ../tools/system/xe { };
|
||||||
|
|
||||||
|
xplr = callPackage ../applications/misc/xplr {};
|
||||||
|
|
||||||
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
|
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
|
||||||
|
|
||||||
testdisk-qt = testdisk.override { enableQt = true; };
|
testdisk-qt = testdisk.override { enableQt = true; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user