summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/bobthefish.nix
blob: 417ac87257a747cd718db261d27d731eaad15f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildFishPlugin
, fetchFromGitHub
,
}:
buildFishPlugin {
  pname = "bobthefish";
  version = "unstable-2023-06-16";

  src = fetchFromGitHub {
    owner = "oh-my-fish";
    repo = "theme-bobthefish";
    rev = "c2c47dc964a257131b3df2a127c2631b4760f3ec";
    sha256 = "sha256-LB4g+EA3C7OxTuHfcxfgl8IVBe5NufFc+5z9VcS0Bt0=";
  };

  meta = with lib; {
    description = "A Powerline-style, Git-aware fish theme optimized for awesome";
    homepage = "https://github.com/oh-my-fish/theme-bobthefish";
    license = licenses.mit;
    maintainers = with maintainers; [ Scrumplex ];
  };
}