fishPlugins.bobthefisher: init at unstable-2023-03-09
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
fe1d5a7720
commit
48eb49b8ba
2 changed files with 25 additions and 0 deletions
23
pkgs/shells/fish/plugins/bobthefisher.nix
Normal file
23
pkgs/shells/fish/plugins/bobthefisher.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib
|
||||
, buildFishPlugin
|
||||
, fetchFromGitHub
|
||||
,
|
||||
}:
|
||||
buildFishPlugin rec {
|
||||
pname = "bobthefisher";
|
||||
version = "unstable-2023-03-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Scrumplex";
|
||||
repo = "bobthefisher";
|
||||
rev = "6528033a2c9ca90611d04b6a4afd2131b9495cdc";
|
||||
sha256 = "sha256-UDoSMFKtd6ur10guqJlkpA0YSCBv45FR5QKJqdXZWgw=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Powerline-style, Git-aware fish theme optimized for awesome (fork of bobthefish)";
|
||||
homepage = "https://github.com/Scrumplex/bobthefisher";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Scrumplex ];
|
||||
};
|
||||
}
|
|
@ -5,6 +5,8 @@ lib.makeScope newScope (self: with self; {
|
|||
|
||||
bobthefish = callPackage ./bobthefish.nix { };
|
||||
|
||||
bobthefisher = callPackage ./bobthefisher.nix { };
|
||||
|
||||
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
||||
|
||||
colored-man-pages = callPackage ./colored-man-pages.nix { };
|
||||
|
|
Loading…
Reference in a new issue