about summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-03-09 22:54:17 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2023-03-13 16:45:19 +0100
commit48eb49b8ba5b004db34c826f28692c2041367d3e (patch)
tree7af258d8fb678de569ae621cff7fe54bd45f9c34 /pkgs/shells/fish
parentfe1d5a77200f71018a78008a1f8f36e9526a3b07 (diff)
downloadnixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar.gz
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar.bz2
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar.lz
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar.xz
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.tar.zst
nixlib-48eb49b8ba5b004db34c826f28692c2041367d3e.zip
fishPlugins.bobthefisher: init at unstable-2023-03-09
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/plugins/bobthefisher.nix23
-rw-r--r--pkgs/shells/fish/plugins/default.nix2
2 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/shells/fish/plugins/bobthefisher.nix b/pkgs/shells/fish/plugins/bobthefisher.nix
new file mode 100644
index 000000000000..1930890d4dea
--- /dev/null
+++ b/pkgs/shells/fish/plugins/bobthefisher.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/shells/fish/plugins/default.nix b/pkgs/shells/fish/plugins/default.nix
index 87e527107dbd..e25856672e3e 100644
--- a/pkgs/shells/fish/plugins/default.nix
+++ b/pkgs/shells/fish/plugins/default.nix
@@ -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 { };