summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-03-17 23:19:29 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-03-18 09:49:05 -0700
commit853f1b740c9a135b2ca3beea207c585a75118dae (patch)
treef6c62be87c0c995ea8532e0a7a57c0ead9c0aee7 /pkgs/shells
parentfcab19deb78fbb5ea24e19b133cf34358176396a (diff)
downloadnixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar.gz
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar.bz2
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar.lz
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar.xz
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.tar.zst
nixpkgs-853f1b740c9a135b2ca3beea207c585a75118dae.zip
fish: 3.2.0 -> 3.2.1
Diffstat (limited to 'pkgs/shells')
-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 581785beb7a..c467c04c3ff 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -131,7 +131,7 @@ let
 
   fish = stdenv.mkDerivation rec {
     pname = "fish";
-    version = "3.2.0";
+    version = "3.2.1";
 
     src = fetchurl {
       # There are differences between the release tarball and the tarball GitHub
@@ -141,7 +141,7 @@ let
       # --version`), as well as the local documentation for all builtins (and
       # maybe other things).
       url = "https://github.com/fish-shell/fish-shell/releases/download/${version}/${pname}-${version}.tar.xz";
-      sha256 = "sha256-TwKT7Z9qa3fkfUHvq+YvMxnobvyL+DzFhzMET7xvkhE=";
+      sha256 = "2OSfQJDTd43xfdgl5KKoAZIBVoJCPNndArZnXWXDr1s=";
     };
 
     # Fix FHS paths in tests
@@ -214,7 +214,7 @@ let
 
     checkInputs = [
       coreutils
-      (python3.withPackages(ps: [ps.pexpect]))
+      (python3.withPackages (ps: [ ps.pexpect ]))
       procps
     ];