Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
687 B
Nix
32 lines
687 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkYaziPlugin,
|
|
}:
|
|
mkYaziPlugin {
|
|
pname = "wl-clipboard.yazi";
|
|
version = "0-unstable-2025-08-30";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cp -r . $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grappas";
|
|
repo = "wl-clipboard.yazi";
|
|
rev = "e9a38e47d07549968019702bdafdc4ed07151b7d";
|
|
hash = "sha256-3PRQl4TvuOe5DwVi1gmtmfTOEVZWRayijIbnPgaR3L8=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Wayland implementation of a simple system clipboard for yazi file manager";
|
|
homepage = "https://github.com/grappas/wl-clipboard.yazi";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.felipe-9 ];
|
|
};
|
|
}
|