libloot: 0.24.5 -> 0.25.5; limo: 1.1 -> 1.2 (#395572)

authored by Sandro and committed by GitHub 09287e97 785eec1b

+15 -19
+13 -17
pkgs/by-name/li/libloot/package.nix
··· 24 24 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "libloot"; 27 - version = "0.24.5"; 27 + version = "0.25.5"; 28 28 # Note: don't forget to also update the package versions in the passthru section 29 29 30 30 outputs = [ ··· 36 36 owner = "loot"; 37 37 repo = "libloot"; 38 38 rev = "refs/tags/${finalAttrs.version}"; 39 - hash = "sha256-SAnbp34DlGsq4nfaRHfCTGRSGQtv/rRgngvwma2tc7Q="; 39 + hash = "sha256-l8AdqJ0lZH4rBcf4WV3ju+sIHYam6USXCXTqyRPzgeo="; 40 40 }; 41 41 42 42 patches = [ ··· 102 102 # Due to storage size concerns of `glibcLocales`, we skip this 103 103 "CompareFilenames.shouldBeCaseInsensitiveAndLocaleInvariant" 104 104 "NormalizeFilename.shouldCaseFoldStringsAndBeLocaleInvariant" 105 - 106 - # Some filesystem related test fail because they assume `std::filesystem::equivalent` works with non-existent paths 107 - "Filesystem.equivalentShouldNotRequireThatBothPathsExist" 108 - "Filesystem.equivalentShouldBeCaseSensitive" 109 105 ]; 110 106 in 111 107 "-${builtins.concatStringsSep ":" disabledTests}"; ··· 116 112 testing-plugins = fetchFromGitHub { 117 113 owner = "Ortham"; 118 114 repo = "testing-plugins"; 119 - rev = "refs/tags/1.6.2"; 115 + tag = "1.6.2"; 120 116 hash = "sha256-3Aa98EwqpuGA3YlsRF8luWzXVEFO/rs6JXisXdLyIK4="; 121 117 }; 122 118 ··· 141 137 142 138 libloadorder = finalAttrs.passthru.buildRustFFIPackage rec { 143 139 pname = "libloadorder"; 144 - version = "18.1.3"; 140 + version = "18.3.0"; 145 141 146 142 src = fetchFromGitHub { 147 143 owner = "Ortham"; 148 144 repo = "libloadorder"; 149 - rev = "refs/tags/${version}"; 150 - hash = "sha256-qJ7gC4BkrXJiVcyA1BqlJSRzgc/7VmNBHtDq0ouJoTU="; 145 + tag = version; 146 + hash = "sha256-/8WOEt9dxKFTTZbhf5nt81jo/yHuALPxh/IwAOehi9w="; 151 147 }; 152 148 153 149 useFetchCargoVendor = true; 154 - cargoHash = "sha256-m3lyABr7tU0AeC6EZomBw1X722ezQg/cjSZh/ZhkiBw="; 150 + cargoHash = "sha256-re/cKqf/CAD7feNIEuou4ZP8BNkArd5CvREx1610jig="; 155 151 156 152 lang = "c++"; 157 153 header = "libloadorder.hpp"; ··· 164 160 src = fetchFromGitHub { 165 161 owner = "Ortham"; 166 162 repo = "esplugin"; 167 - rev = "refs/tags/${version}"; 163 + tag = version; 168 164 hash = "sha256-ygjSyixg+9HFFNV/G+w+TxGFTrjlWxlDt8phpCE8xyQ="; 169 165 }; 170 166 ··· 177 173 178 174 loot-condition-interpreter = finalAttrs.passthru.buildRustFFIPackage rec { 179 175 pname = "loot-condition-interpreter"; 180 - version = "4.0.2"; 176 + version = "5.3.0"; 181 177 182 178 src = fetchFromGitHub { 183 179 owner = "loot"; 184 180 repo = "loot-condition-interpreter"; 185 - rev = "refs/tags/${version}"; 186 - hash = "sha256-yXbe7ByYHvFpokRpV2pz2SX0986dpk5IpehwDUhoZKg="; 181 + tag = version; 182 + hash = "sha256-MvadQ4cWpzNgF/lUW5Jb758DvfRPGZ7s1W4MbO7nbIw="; 187 183 }; 188 184 189 185 useFetchCargoVendor = true; 190 - cargoHash = "sha256-d3JBpYI4XMkDnufvdyZkgtp7H4amMzM0dBEO6t9efGE="; 186 + cargoHash = "sha256-m/vRnAJyMQOosxnjSUgHIY1RCkdB5+HFVqqzYVEpgOI="; 191 187 192 188 lang = "c"; 193 189 header = "loot_condition_interpreter.h"; ··· 198 194 src = fetchFromGitHub { 199 195 owner = "loot"; 200 196 repo = "yaml-cpp"; 201 - rev = "refs/tags/${version}"; 197 + tag = version; 202 198 hash = "sha256-whYorebrLiDeO75LC2SMUX/8OD528BR0+DEgnJxxpoQ="; 203 199 }; 204 200 };
+2 -2
pkgs/by-name/li/limo/package.nix
··· 21 21 22 22 stdenv.mkDerivation (finalAttrs: { 23 23 pname = "limo"; 24 - version = "1.1"; 24 + version = "1.2"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "limo-app"; 28 28 repo = "limo"; 29 29 tag = "v${finalAttrs.version}"; 30 - hash = "sha256-fzqIZ/BqOpPjo18qi4VidGg1ruhQLqfwoA/hidGPEao="; 30 + hash = "sha256-hgtqpP1H9+TAuP5b/Wvx4mqeYRKyaluMlyzHEmIgSqo="; 31 31 }; 32 32 33 33 patches = lib.optionals (!withUnrar) [