1{ lib
2, buildFishPlugin
3, fetchFromGitHub
4,
5}:
6buildFishPlugin rec {
7 pname = "bobthefish";
8 version = "unstable-2022-08-02";
9
10 src = fetchFromGitHub {
11 owner = "oh-my-fish";
12 repo = "theme-bobthefish";
13 rev = "2dcfcab653ae69ae95ab57217fe64c97ae05d8de";
14 sha256 = "sha256-jBbm0wTNZ7jSoGFxRkTz96QHpc5ViAw9RGsRBkCQEIU=";
15 };
16
17 meta = with lib; {
18 description = "A Powerline-style, Git-aware fish theme optimized for awesome";
19 homepage = "https://github.com/oh-my-fish/theme-bobthefish";
20 license = licenses.mit;
21 maintainers = with maintainers; [ Scrumplex ];
22 };
23}