summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/fish/plugins/fish-you-should-use.nix
blob: 96c2e07447f3ac6958ef2a26764705dca6082e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
  unstableGitUpdater,
}:
buildFishPlugin {
  pname = "fish-you-should-use";
  version = "0-unstable-2022-02-13";

  src = fetchFromGitHub {
    owner = "paysonwallach";
    repo = "fish-you-should-use";
    rev = "a332823512c0b51e71516ebb8341db0528c87926";
    hash = "sha256-MmGDFTgxEFgHdX95OjH3jKsVG1hdwo6bRht+Lvvqe5Y=";
  };

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Fish plugin that reminds you to use your aliases";
    homepage = "https://github.com/paysonwallach/fish-you-should-use";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ anomalocaris ];
  };
}