From 6dfd59344127611bfe344ba15d6ece6a09a230c9 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Mon, 26 May 2025 19:23:45 +0530 Subject: [PATCH] lact: switch to finalAttrs, add johnrtitor as maintainer Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com> --- pkgs/by-name/la/lact/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/la/lact/package.nix b/pkgs/by-name/la/lact/package.nix index 8f91c43c9a6b..94e669665fae 100644 --- a/pkgs/by-name/la/lact/package.nix +++ b/pkgs/by-name/la/lact/package.nix @@ -17,14 +17,14 @@ autoAddDriverRunpath, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "lact"; version = "0.7.3"; src = fetchFromGitHub { owner = "ilya-zlobintsev"; repo = "LACT"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-R8VEAk+CzJCxPzJohsbL/XXH1GMzGI2W92sVJ2evqXs="; }; @@ -118,8 +118,9 @@ rustPlatform.buildRustPackage rec { figsoda atemu cything + johnrtitor ]; platforms = lib.platforms.linux; mainProgram = "lact"; }; -} +})