87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
23 lines
595 B
Nix
23 lines
595 B
Nix
{ lib
|
|
, buildFishPlugin
|
|
, fetchFromGitHub
|
|
,
|
|
}:
|
|
buildFishPlugin rec {
|
|
pname = "bobthefish";
|
|
version = "unstable-2022-08-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oh-my-fish";
|
|
repo = "theme-bobthefish";
|
|
rev = "2dcfcab653ae69ae95ab57217fe64c97ae05d8de";
|
|
sha256 = "sha256-jBbm0wTNZ7jSoGFxRkTz96QHpc5ViAw9RGsRBkCQEIU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|