Add yazi custom shell plugin

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-06-13 14:47:14 +01:00
parent 000a8c64b4
commit 6505f74ef3
17 changed files with 54 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
{ pkgs, ... }:
# AUTO-UPDATE: nix-update --flake --version=branch=main yazi-plugin-custom-shell
pkgs.stdenv.mkDerivation rec {
pname = "custom-shell";
version = "0-unstable-2025-06-07";
src = pkgs.fetchFromGitHub {
owner = "AnirudhG07";
repo = "custom-shell.yazi";
rev = "b04213d2f4ca6079bef37491be07860baa8264b9";
hash = "sha256-hJVFZvcHgcjmcwUUGs1Q668KjeLSCEVuAhAD1A8ZM90=";
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out
cp $src/main.lua $out
'';
}