rio: 0.2.20 -> 0.2.23 (#427987)

authored by Nick Cao and committed by GitHub 58c6ea0a 0c3c37be

+7 -7
+7 -7
pkgs/by-name/ri/rio/package.nix
··· 51 wayland 52 ]; 53 in 54 - rustPlatform.buildRustPackage rec { 55 pname = "rio"; 56 - version = "0.2.20"; 57 58 src = fetchFromGitHub { 59 owner = "raphamorim"; 60 repo = "rio"; 61 - rev = "v${version}"; 62 - hash = "sha256-/RQPjT5IIhV6bp3u5BhsCglGIJbQoBKIJ88U2Tp3qVE="; 63 }; 64 65 useFetchCargoVendor = true; 66 - cargoHash = "sha256-T88K2ujB4hskbQW5+urlSdEgN+XSmEEb80eW5gw51Gs="; 67 68 nativeBuildInputs = [ 69 ncurses ··· 142 oluceps 143 ]; 144 platforms = lib.platforms.unix; 145 - changelog = "https://github.com/raphamorim/rio/blob/v${version}/docs/docs/releases.md"; 146 mainProgram = "rio"; 147 }; 148 - }
··· 51 wayland 52 ]; 53 in 54 + rustPlatform.buildRustPackage (finalAttrs: { 55 pname = "rio"; 56 + version = "0.2.23"; 57 58 src = fetchFromGitHub { 59 owner = "raphamorim"; 60 repo = "rio"; 61 + tag = "v${finalAttrs.version}"; 62 + hash = "sha256-hhKlXuhv0PP8/xCIZ0lFGtCYCzOzH0gUeh48GdKpG6A="; 63 }; 64 65 useFetchCargoVendor = true; 66 + cargoHash = "sha256-+pfudGeWq4EARQDu+HAZczWlzStuzDPArMm1oCZGfKU="; 67 68 nativeBuildInputs = [ 69 ncurses ··· 142 oluceps 143 ]; 144 platforms = lib.platforms.unix; 145 + changelog = "https://github.com/raphamorim/rio/blob/v${finalAttrs.version}/docs/docs/releases.md"; 146 mainProgram = "rio"; 147 }; 148 + })