1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5 unstableGitUpdater,
6}:
7buildFishPlugin {
8 pname = "fish-you-should-use";
9 version = "0-unstable-2022-02-13";
10
11 src = fetchFromGitHub {
12 owner = "paysonwallach";
13 repo = "fish-you-should-use";
14 rev = "a332823512c0b51e71516ebb8341db0528c87926";
15 hash = "sha256-MmGDFTgxEFgHdX95OjH3jKsVG1hdwo6bRht+Lvvqe5Y=";
16 };
17
18 passthru.updateScript = unstableGitUpdater { };
19
20 meta = {
21 description = "Fish plugin that reminds you to use your aliases";
22 homepage = "https://github.com/paysonwallach/fish-you-should-use";
23 license = lib.licenses.gpl3Only;
24 maintainers = with lib.maintainers; [ anomalocaris ];
25 };
26}