ripasso-cursive: switch to `finalAttrs` pattern

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