Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6buildFishPlugin {
7 pname = "bobthefish";
8 version = "0-unstable-2024-09-24";
9
10 src = fetchFromGitHub {
11 owner = "oh-my-fish";
12 repo = "theme-bobthefish";
13 rev = "e3b4d4eafc23516e35f162686f08a42edf844e40";
14 sha256 = "sha256-cXOYvdn74H4rkMWSC7G6bT4wa9d3/3vRnKed2ixRnuA=";
15 };
16
17 meta = with lib; {
18 description = "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}