1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6buildFishPlugin {
7 pname = "bobthefisher";
8 version = "0-unstable-2023-10-25";
9
10 src = fetchFromGitHub {
11 owner = "Scrumplex";
12 repo = "bobthefisher";
13 rev = "f4179a14b087c7fbfc2e892da429adad40a39e44";
14 sha256 = "sha256-l1DHSZa40BX2/4GCjm5E53UOeFEnMioWbZtCW14WX6k=";
15 };
16
17 meta = with lib; {
18 description = "Powerline-style, Git-aware fish theme optimized for awesome (fork of bobthefish)";
19 homepage = "https://github.com/Scrumplex/bobthefisher";
20 license = licenses.mit;
21 maintainers = with maintainers; [ Scrumplex ];
22 };
23}