summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-08-12 19:15:32 -0500
committerGitHub <noreply@github.com>2020-08-12 19:15:32 -0500
commit4cba5d3a5123338c2ef89e66908c350f6837f30d (patch)
treeb88acd4066666240f5cda4b63aef1d6f0605cf74 /pkgs/shells
parent9a1aa2aeded45298bd6f00b48b565fb02aa64c20 (diff)
parent5178e81f4756df8bb2138a95c98ffe0d3fe66f5c (diff)
downloadnixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar.gz
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar.bz2
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar.lz
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar.xz
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.tar.zst
nixpkgs-4cba5d3a5123338c2ef89e66908c350f6837f30d.zip
Merge pull request #95268 from r-ryantm/auto-update/pure-prompt
pure-prompt: 1.12.0 -> 1.13.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/pure-prompt/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/zsh/pure-prompt/default.nix b/pkgs/shells/zsh/pure-prompt/default.nix
index 5696ed61b97..bfcd3be5e9c 100644
--- a/pkgs/shells/zsh/pure-prompt/default.nix
+++ b/pkgs/shells/zsh/pure-prompt/default.nix
@@ -4,13 +4,13 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   pname = "pure-prompt";
-  version = "1.12.0";
+  version = "1.13.0";
 
   src = fetchFromGitHub {
     owner = "sindresorhus";
     repo = "pure";
     rev = "v${version}";
-    sha256 = "1h04z7rxmca75sxdfjgmiyf1b5z2byfn6k4srls211l0wnva2r5y";
+    sha256 = "16q9v4c8lagp4vxm7qhagilqnwf1g4pbds56x5wfj4cwc0x2gclw";
   };
 
   installPhase = ''
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Pretty, minimal and fast ZSH prompt";
-    homepage = https://github.com/sindresorhus/pure;
+    homepage = "https://github.com/sindresorhus/pure";
     license = licenses.mit;
     platforms = platforms.all;
     maintainers = with maintainers; [ pacien pablovsky ];