summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-03 11:36:44 -0500
committerGitHub <noreply@github.com>2024-01-03 11:36:44 -0500
commitf1c7929d1c0ba6c9e2a1fb8d451298f128ecb917 (patch)
tree1b2b56459079ed61ebef6e07bd0f43ba1c114af8
parentMerge pull request #278504 from NixOS/backport-273694-to-release-23.11 (diff)
parentfish: add changelog url (diff)
downloadnixpkgs-f1c7929d1c0ba6c9e2a1fb8d451298f128ecb917.tar.gz
Merge pull request #278316 from NixOS/backport-278159-to-release-23.11
[Backport release-23.11] fish: 3.6.4 -> 3.7.0
-rw-r--r--pkgs/shells/fish/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index b756da0754eb..3703644a73ae 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -135,7 +135,7 @@ let
fish = stdenv.mkDerivation rec {
pname = "fish";
- version = "3.6.4";
+ version = "3.7.0";
src = fetchurl {
# There are differences between the release tarball and the tarball GitHub
@@ -145,7 +145,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";
- hash = "sha256-Dz9hDlgN4JL76ILIqnZiPs+Ruxb98FQyQebpDV1Lw5M=";
+ hash = "sha256-3xtzeLcU8GkLKF7Z5OWK/icKyY28nKWDlYnBr8yjOrE=";
};
# Fix FHS paths in tests
@@ -298,9 +298,10 @@ let
meta = with lib; {
description = "Smart and user-friendly command line shell";
homepage = "https://fishshell.com/";
+ changelog = "https://github.com/fish-shell/fish-shell/releases/tag/${version}";
license = licenses.gpl2;
platforms = platforms.unix;
- maintainers = with maintainers; [ cole-h winter ];
+ maintainers = with maintainers; [ adamcstephens cole-h winter ];
mainProgram = "fish";
};