summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorPatrick Callahan <pxcallahan@gmail.com>2017-06-10 19:35:23 -0700
committerPatrick Callahan <pxcallahan@gmail.com>2017-06-22 21:09:15 -0700
commite620135a8768aea503f7ba3933f3dc97c9ffaf31 (patch)
tree6adeeaf85704a3abfc41f80543c46cb448ae5af9 /pkgs/shells/fish
parentbcaf2f6dbe5369f4835cfff31639f07b70bcb670 (diff)
downloadnixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar.gz
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar.bz2
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar.lz
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar.xz
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.tar.zst
nixpkgs-e620135a8768aea503f7ba3933f3dc97c9ffaf31.zip
fish: 2.5.0 -> 2.6.0
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 798d00b0be1..b2a63e9532b 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -89,13 +89,13 @@ in
 
 stdenv.mkDerivation rec {
   name = "fish-${version}";
-  version = "2.5.0";
+  version = "2.6.0";
 
   etcConfigAppendix = builtins.toFile "etc-config.appendix.fish" etcConfigAppendixText;
 
   src = fetchurl {
     url = "http://fishshell.com/files/${version}/${name}.tar.gz";
-    sha256 = "19djav128nkhjxgfhwhc32i5y9d9c3karbh5yg67kqrdranyvh7q";
+    sha256 = "1yzx73kg5ng5ivhi68756sl5hpb8869110l9fwim6gn7f7bbprby";
   };
 
   buildInputs = [ ncurses libiconv pcre2 ];
@@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
   # Python: Autocompletion generated from manpages and config editing
   propagatedBuildInputs = [
     coreutils gnugrep gnused bc
-    python which groff gettext
+    python groff gettext
   ] ++ optional (!stdenv.isDarwin) man-db;
 
   postInstall = ''