about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-30 14:20:13 -0500
committerGitHub <noreply@github.com>2022-12-30 14:20:13 -0500
commitb4d8bdee40bc6c445adf10236e3c7189263c9ff5 (patch)
treeb25ccc5bf4bf6b14c7751a7deccb55c6524c94a3 /pkgs/shells
parentd8c95bda335a70045878c11713a5425f937b79bc (diff)
parent0f28dc189a470f102864079e730b7103388c24ab (diff)
downloadnixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar.gz
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar.bz2
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar.lz
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar.xz
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.tar.zst
nixlib-b4d8bdee40bc6c445adf10236e3c7189263c9ff5.zip
Merge pull request #206917 from KyleOndy/fix-spaceship
spaceship-prompt: 3.16.7 -> 4.12.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/spaceship-prompt/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/shells/zsh/spaceship-prompt/default.nix b/pkgs/shells/zsh/spaceship-prompt/default.nix
index e5187658eeb9..e1691184e7d4 100644
--- a/pkgs/shells/zsh/spaceship-prompt/default.nix
+++ b/pkgs/shells/zsh/spaceship-prompt/default.nix
@@ -2,13 +2,13 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "spaceship-prompt";
-  version = "3.16.7";
+  version = "4.12.0";
 
   src = fetchFromGitHub {
     owner = "denysdovhan";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-dMP7mDzb0xLCP2l9j4SOP47bcpuBNSoXsDecVOvZaL8=";
+    sha256 = "sha256-ZL6z5pj2xbnUZl4SK7wxiJjheUY79hwDNVYm9+biKZU=";
   };
 
   strictDeps = true;
@@ -22,6 +22,7 @@ stdenvNoCC.mkDerivation rec {
     find scripts -type f -exec install -Dm644 {} "$out/lib/spaceship-prompt/{}" \;
     find sections -type f -exec install -Dm644 {} "$out/lib/spaceship-prompt/{}" \;
     install -Dm644 spaceship.zsh "$out/lib/spaceship-prompt/spaceship.zsh"
+    install -Dm644 async.zsh "$out/lib/spaceship-prompt/async.zsh"
     install -d "$out/share/zsh/themes/"
     ln -s "$out/lib/spaceship-prompt/spaceship.zsh" "$out/share/zsh/themes/spaceship.zsh-theme"
     install -d "$out/share/zsh/site-functions/"