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
25 lines
539 B
Nix
25 lines
539 B
Nix
{
|
|
lib,
|
|
buildFishPlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildFishPlugin {
|
|
pname = "fishbang";
|
|
version = "0-unstable-2025-01-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BrewingWeasel";
|
|
repo = "fishbang";
|
|
rev = "f8d2721ac5508dbda54a666ebf12f1492c478277";
|
|
hash = "sha256-VHtjt3Xobvs0DTXJ1mFU8i84EEsNQv3yqbhjs7c1mNE=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Bash bang commands for fish";
|
|
homepage = "https://github.com/BrewingWeasel/fishbang";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.marcel ];
|
|
};
|
|
}
|