567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
24 lines
592 B
Nix
24 lines
592 B
Nix
{
|
|
lib,
|
|
buildFishPlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildFishPlugin {
|
|
pname = "bobthefish";
|
|
version = "0-unstable-2024-09-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oh-my-fish";
|
|
repo = "theme-bobthefish";
|
|
rev = "e3b4d4eafc23516e35f162686f08a42edf844e40";
|
|
sha256 = "sha256-cXOYvdn74H4rkMWSC7G6bT4wa9d3/3vRnKed2ixRnuA=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Powerline-style, Git-aware fish theme optimized for awesome";
|
|
homepage = "https://github.com/oh-my-fish/theme-bobthefish";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ Scrumplex ];
|
|
};
|
|
}
|