From 76bf90378fd93cc166fcbb79e74182a675be56f4 Mon Sep 17 00:00:00 2001 From: duvetfall Date: Wed, 1 May 2024 20:14:16 +0300 Subject: [PATCH] fix(ayugram-desktop): wrong way to mod attr --- pkgs/ayugram.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/ayugram.nix b/pkgs/ayugram.nix index ec2ff5d..d6af966 100644 --- a/pkgs/ayugram.nix +++ b/pkgs/ayugram.nix @@ -1,11 +1,11 @@ { pkgs, ... }: pkgs.telegram-desktop.overrideAttrs ( - old: + finalAttrs: previousAttrs: with pkgs; let mainProgram = if stdenv.isLinux then "ayugram-desktop" else "Ayugram"; in - finalAttrs: previousAttrs: { + { pname = "ayugram-desktop"; version = "4.16.8";