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
46 lines
995 B
Nix
46 lines
995 B
Nix
{
|
|
mkTmuxPlugin,
|
|
replaceVars,
|
|
fetchFromGitHub,
|
|
crystal,
|
|
}:
|
|
let
|
|
fingers = crystal.buildCrystalPackage rec {
|
|
format = "shards";
|
|
version = "2.5.1";
|
|
pname = "fingers";
|
|
src = fetchFromGitHub {
|
|
owner = "Morantron";
|
|
repo = "tmux-fingers";
|
|
rev = "${version}";
|
|
sha256 = "sha256-O5CfboFnl51OeOgqI2NB3MmELDeKykd5NO2d5FGXkII=";
|
|
};
|
|
|
|
shardsFile = ./shards.nix;
|
|
crystalBinaries.tmux-fingers.src = "src/fingers.cr";
|
|
|
|
postInstall = ''
|
|
shopt -s dotglob extglob
|
|
rm -rv !("tmux-fingers.tmux"|"bin")
|
|
shopt -u dotglob extglob
|
|
'';
|
|
|
|
# TODO: Needs starting a TMUX session to run tests
|
|
# Unhandled exception: Missing ENV key: "TMUX" (KeyError)
|
|
doCheck = false;
|
|
doInstallCheck = false;
|
|
};
|
|
in
|
|
mkTmuxPlugin {
|
|
inherit (fingers) version src meta;
|
|
|
|
pluginName = fingers.src.repo;
|
|
rtpFilePath = "tmux-fingers.tmux";
|
|
|
|
patches = [
|
|
(replaceVars ./fix.patch {
|
|
tmuxFingersDir = "${fingers}/bin";
|
|
})
|
|
];
|
|
}
|