From e1df5fa28e72f927cf1f2f87b6a21873b47b2218 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Thu, 3 Jul 2025 23:33:30 +0200 Subject: [PATCH] helix: switch to finalAttrs for helix build --- packages/helix/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/helix/default.nix b/packages/helix/default.nix index 730cee9..7f4bffb 100644 --- a/packages/helix/default.nix +++ b/packages/helix/default.nix @@ -43,12 +43,10 @@ custom-helix = (helix.override {inherit rustPlatform;}).overrideAttrs - (_: let - inherit (custom-helix) version; - in { + (finalAttrs: previousAttrs: { version = "25.06.1"; src = fetchzip { - url = "https://github.com/bloxx12/helix/releases/download/${version}/helix-${version}-source.tar.xz"; + url = "https://github.com/bloxx12/helix/releases/download/${finalAttrs.version}/helix-${finalAttrs.version}-source.tar.xz"; hash = "sha256-941moaBUF+aGsbFapK1cp5+NFdecSfRCTdnVUtkDQps="; stripRoot = false; };