From 247f9416e2bf7cb0ca23133e8a982b6bcb416b0d Mon Sep 17 00:00:00 2001 From: HigherOrderLogic <73709188+HigherOrderLogic@users.noreply.github.com> Date: Mon, 29 Jun 2026 10:16:11 +0000 Subject: [PATCH] fishPlugins.pure: convert to `finalAttrs` pattern --- pkgs/shells/fish/plugins/pure.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/shells/fish/plugins/pure.nix b/pkgs/shells/fish/plugins/pure.nix index 438f30145a0a..a5cfeda94c30 100644 --- a/pkgs/shells/fish/plugins/pure.nix +++ b/pkgs/shells/fish/plugins/pure.nix @@ -5,15 +5,14 @@ git, fishtape_3, }: - -buildFishPlugin rec { +buildFishPlugin (finalAttrs: { pname = "pure"; version = "4.15.0"; src = fetchFromGitHub { owner = "pure-fish"; repo = "pure"; - rev = "v${version}"; + rev = "v${finalAttrs.version}"; hash = "sha256-fqcIfst9YnkOi50pIUMoJJQ7s1w1Vr6hRdEFo+FWIZY="; }; @@ -32,4 +31,4 @@ buildFishPlugin rec { license = lib.licenses.mit; maintainers = with lib.maintainers; [ euxane ]; }; -} +})