fractal: 11.1 -> 11.2 (#415912)

authored by Adam C. Stephens and committed by GitHub d4cc7c79 8c4e95d2

+9 -9
+9 -9
pkgs/by-name/fr/fractal/package.nix
··· 28 28 glycin-loaders, 29 29 }: 30 30 31 - stdenv.mkDerivation rec { 31 + stdenv.mkDerivation (finalAttrs: { 32 32 pname = "fractal"; 33 - version = "11.1"; 33 + version = "11.2"; 34 34 35 35 src = fetchFromGitLab { 36 36 domain = "gitlab.gnome.org"; 37 37 owner = "World"; 38 38 repo = "fractal"; 39 - tag = version; 40 - hash = "sha256-G8vJvoOVVQ9cPnwoxNoKrQwGNxnA78HG285iSy6lSjk="; 39 + tag = finalAttrs.version; 40 + hash = "sha256-UE0TRC9DeP+fl85fzuQ8/3ioIPdeSqsJWnW1olB1gmo="; 41 41 }; 42 42 43 43 cargoDeps = rustPlatform.fetchCargoVendor { 44 - inherit src; 45 - hash = "sha256-yxo1ZSOqjh2lrdmiCrKQGFHpSPRgye64rFNZpghZqI0="; 44 + inherit (finalAttrs) src; 45 + hash = "sha256-I+1pGZWxn9Q/CL8D6VxsaO3H4EdBek4wyykvNgCNRZI="; 46 46 }; 47 47 48 48 patches = [ ··· 109 109 110 110 meta = { 111 111 description = "Matrix group messaging app"; 112 - homepage = "https://gitlab.gnome.org/GNOME/fractal"; 113 - changelog = "https://gitlab.gnome.org/World/fractal/-/releases/${version}"; 112 + homepage = "https://gitlab.gnome.org/World/fractal"; 113 + changelog = "https://gitlab.gnome.org/World/fractal/-/releases/${finalAttrs.version}"; 114 114 license = lib.licenses.gpl3Plus; 115 115 teams = [ lib.teams.gnome ]; 116 116 platforms = lib.platforms.linux; 117 117 mainProgram = "fractal"; 118 118 }; 119 - } 119 + })