summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorLuke Adams <luke.adams@belljar.io>2017-12-25 14:56:25 -0600
committerLuke Adams <luke.adams@belljar.io>2017-12-25 14:56:25 -0600
commit2dca67864dc6b0684680f1e012d681476a217002 (patch)
tree67482d98275114c6ea91d5b56fea57c00fc43af3 /pkgs/shells/fish
parent26d1f2eba8f46528a833c9ca9ad33bbd462c0dc1 (diff)
downloadnixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar.gz
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar.bz2
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar.lz
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar.xz
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.tar.zst
nixpkgs-2dca67864dc6b0684680f1e012d681476a217002.zip
fish: 2.7.0 -> 2.7.1
Fixes paste bracketing issue with iTerm (macOS)
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 ec99f2bbf8d..490832d31d8 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -88,7 +88,7 @@ let
 
   fish = stdenv.mkDerivation rec {
     name = "fish-${version}";
-    version = "2.7.0";
+    version = "2.7.1";
 
     etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;
 
@@ -96,7 +96,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 = "1jvvm27hp46w0cia14lfz6161dkz8b935j1m7j38i7rgx75bfxis";
+      sha256 = "0nhc3yc5lnnan7zmxqqxm07rdpwjww5ijy45ll2njdc6fnfb2az4";
     };
 
     buildInputs = [ ncurses libiconv pcre2 ];