ripasso-cursive: switch to `finalAttrs` pattern

+3 -3
+3 -3
pkgs/by-name/ri/ripasso-cursive/package.nix
··· 19 nix-update-script, 20 }: 21 22 - rustPlatform.buildRustPackage rec { 23 version = "0.7.0"; 24 pname = "ripasso-cursive"; 25 26 src = fetchFromGitHub { 27 owner = "cortex"; 28 repo = "ripasso"; 29 - tag = "release-${version}"; 30 hash = "sha256-j98X/+UTea4lCtFfMpClnfcKlvxm4DpOujLc0xc3VUY="; 31 }; 32 ··· 81 maintainers = with lib.maintainers; [ sgo ]; 82 platforms = lib.platforms.unix; 83 }; 84 - }
··· 19 nix-update-script, 20 }: 21 22 + rustPlatform.buildRustPackage (finalAttrs: { 23 version = "0.7.0"; 24 pname = "ripasso-cursive"; 25 26 src = fetchFromGitHub { 27 owner = "cortex"; 28 repo = "ripasso"; 29 + tag = "release-${finalAttrs.version}"; 30 hash = "sha256-j98X/+UTea4lCtFfMpClnfcKlvxm4DpOujLc0xc3VUY="; 31 }; 32 ··· 81 maintainers = with lib.maintainers; [ sgo ]; 82 platforms = lib.platforms.unix; 83 }; 84 + })