summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorqolii <qoli@protonmail.com>2019-03-02 14:48:33 -0800
committerqolii <qoli@protonmail.com>2019-03-02 14:48:33 -0800
commitdc84a655b2be91091c46ce159ec69e3756da7a15 (patch)
tree5c98829bfe2611185bc3869832c2070f1b2d07e9 /pkgs/shells/fish
parent898870824d708fac857479f755ab38a657905abc (diff)
downloadnixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar.gz
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar.bz2
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar.lz
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar.xz
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.tar.zst
nixpkgs-dc84a655b2be91091c46ce159ec69e3756da7a15.zip
fish: 3.0.1 -> 3.0.2
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 8e63eeeba15..32d87d7cc1b 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -89,7 +89,7 @@ let
 
   fish = stdenv.mkDerivation rec {
     name = "fish-${version}";
-    version = "3.0.1";
+    version = "3.0.2";
 
     etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;
 
@@ -97,7 +97,7 @@ let
       # There are differences between the release tarball and the tarball github packages from the tag
       # Hence we cannot use fetchFromGithub
       url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${name}.tar.gz";
-      sha256 = "1r55xgnacjxglban15ln3fw8p3q60k0pk0fgsax3h5zfambplrr1";
+      sha256 = "03j3jl9jzlnhq4p86zj8wqsh5sx45j1d1fvfa80ks1cfdg68qwhl";
     };
 
     nativeBuildInputs = [ cmake ];