Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 594 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin { 7 pname = "bobthefish"; 8 version = "0-unstable-2023-06-16"; 9 10 src = fetchFromGitHub { 11 owner = "oh-my-fish"; 12 repo = "theme-bobthefish"; 13 rev = "c2c47dc964a257131b3df2a127c2631b4760f3ec"; 14 sha256 = "sha256-LB4g+EA3C7OxTuHfcxfgl8IVBe5NufFc+5z9VcS0Bt0="; 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}