Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub ebf81047 5bd568bc

+2426 -1953
+7
maintainers/maintainer-list.nix
··· 21737 githubId = 22163194; 21738 name = "Stel Abrego"; 21739 }; 21740 stepbrobd = { 21741 name = "Yifei Sun"; 21742 email = "ysun@hey.com";
··· 21737 githubId = 22163194; 21738 name = "Stel Abrego"; 21739 }; 21740 + stellessia = { 21741 + name = "Rachel Podya"; 21742 + email = "homicide@disroot.org"; 21743 + github = "stellessia"; 21744 + githubId = 81514356; 21745 + keys = [ { fingerprint = "38E8 7F79 AE86 CA98 F8BC 45F8 1060 00A0 5E5B DB90"; } ]; 21746 + }; 21747 stepbrobd = { 21748 name = "Yifei Sun"; 21749 email = "ysun@hey.com";
+10 -3
nixos/modules/services/misc/jellyseerr.nix
··· 20 default = 5055; 21 description = ''The port which the Jellyseerr web UI should listen to.''; 22 }; 23 }; 24 25 config = lib.mkIf cfg.enable { ··· 27 description = "Jellyseerr, a requests manager for Jellyfin"; 28 after = [ "network.target" ]; 29 wantedBy = [ "multi-user.target" ]; 30 - environment.PORT = toString cfg.port; 31 serviceConfig = { 32 Type = "exec"; 33 StateDirectory = "jellyseerr"; 34 - WorkingDirectory = "${cfg.package}/libexec/jellyseerr/deps/jellyseerr"; 35 DynamicUser = true; 36 ExecStart = lib.getExe cfg.package; 37 - BindPaths = [ "/var/lib/jellyseerr/:${cfg.package}/libexec/jellyseerr/deps/jellyseerr/config/" ]; 38 Restart = "on-failure"; 39 ProtectHome = true; 40 ProtectSystem = "strict";
··· 20 default = 5055; 21 description = ''The port which the Jellyseerr web UI should listen to.''; 22 }; 23 + 24 + configDir = lib.mkOption { 25 + type = lib.types.path; 26 + default = "/var/lib/jellyseerr/config"; 27 + description = "Config data directory"; 28 + }; 29 }; 30 31 config = lib.mkIf cfg.enable { ··· 33 description = "Jellyseerr, a requests manager for Jellyfin"; 34 after = [ "network.target" ]; 35 wantedBy = [ "multi-user.target" ]; 36 + environment = { 37 + PORT = toString cfg.port; 38 + CONFIG_DIRECTORY = cfg.configDir; 39 + }; 40 serviceConfig = { 41 Type = "exec"; 42 StateDirectory = "jellyseerr"; 43 DynamicUser = true; 44 ExecStart = lib.getExe cfg.package; 45 Restart = "on-failure"; 46 ProtectHome = true; 47 ProtectSystem = "strict";
+60 -42
pkgs/applications/misc/avalonia-ilspy/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , buildDotnetModule 5 - , dotnetCorePackages 6 - , libX11 7 - , libICE 8 - , libSM 9 - , libXi 10 - , libXcursor 11 - , libXext 12 - , libXrandr 13 - , fontconfig 14 - , glew 15 - , makeDesktopItem 16 - , copyDesktopItems 17 - , icoutils 18 - , bintools 19 - , fixDarwinDylibNames 20 - , autoSignDarwinBinariesHook 21 }: 22 23 buildDotnetModule rec { ··· 28 owner = "icsharpcode"; 29 repo = "AvaloniaILSpy"; 30 rev = "v${version}"; 31 - sha256 = "cCQy5cSpJNiVZqgphURcnraEM0ZyXGhzJLb5AThNfPQ="; 32 }; 33 34 patches = [ 35 # Remove dead nuget package source 36 ./remove-broken-sources.patch 37 ]; 38 39 - nativeBuildInputs = [ 40 - copyDesktopItems 41 - icoutils 42 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ bintools fixDarwinDylibNames ] 43 - ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ autoSignDarwinBinariesHook ]; 44 45 buildInputs = [ 46 # Dependencies of nuget packages w/ native binaries ··· 61 glew 62 ]; 63 64 - postInstall = '' 65 - icotool --icon -x ILSpy/ILSpy.ico 66 - for i in 16 32 48 256; do 67 - size=''${i}x''${i} 68 - install -Dm444 *_''${size}x32.png $out/share/icons/hicolor/$size/apps/ILSpy.png 69 - done 70 - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' 71 - install -Dm444 ILSpy/Info.plist $out/Applications/ILSpy.app/Contents/Info.plist 72 - install -Dm444 ILSpy/ILSpy.icns $out/Applications/ILSpy.app/Contents/Resources/ILSpy.icns 73 - mkdir -p $out/Applications/ILSpy.app/Contents/MacOS 74 - ln -s $out/bin/ILSpy $out/Applications/ILSpy.app/Contents/MacOS/ILSpy 75 - ''; 76 77 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 78 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 79 80 projectFile = "ILSpy/ILSpy.csproj"; 81 nugetDeps = ./deps.json; ··· 108 lgpl21Only 109 mspl 110 ]; 111 - sourceProvenance = with sourceTypes; [ fromSource binaryBytecode binaryNativeCode ]; 112 - maintainers = with maintainers; [ AngryAnt emilytrau ]; 113 mainProgram = "ILSpy"; 114 }; 115 }
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + buildDotnetModule, 6 + dotnetCorePackages, 7 + libX11, 8 + libICE, 9 + libSM, 10 + libXi, 11 + libXcursor, 12 + libXext, 13 + libXrandr, 14 + fontconfig, 15 + glew, 16 + makeDesktopItem, 17 + copyDesktopItems, 18 + icoutils, 19 + bintools, 20 + fixDarwinDylibNames, 21 + autoSignDarwinBinariesHook, 22 }: 23 24 buildDotnetModule rec { ··· 29 owner = "icsharpcode"; 30 repo = "AvaloniaILSpy"; 31 rev = "v${version}"; 32 + hash = "sha256-cCQy5cSpJNiVZqgphURcnraEM0ZyXGhzJLb5AThNfPQ="; 33 }; 34 35 patches = [ 36 # Remove dead nuget package source 37 ./remove-broken-sources.patch 38 + # Upgrade project to .NET 8.0 39 + ./dotnet-8-upgrade.patch 40 ]; 41 42 + nativeBuildInputs = 43 + [ 44 + copyDesktopItems 45 + icoutils 46 + ] 47 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 48 + bintools 49 + fixDarwinDylibNames 50 + ] 51 + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ 52 + autoSignDarwinBinariesHook 53 + ]; 54 55 buildInputs = [ 56 # Dependencies of nuget packages w/ native binaries ··· 71 glew 72 ]; 73 74 + postInstall = 75 + '' 76 + icotool --icon -x ILSpy/ILSpy.ico 77 + for i in 16 32 48 256; do 78 + size=''${i}x''${i} 79 + install -Dm444 *_''${size}x32.png $out/share/icons/hicolor/$size/apps/ILSpy.png 80 + done 81 + '' 82 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 83 + install -Dm444 ILSpy/Info.plist $out/Applications/ILSpy.app/Contents/Info.plist 84 + install -Dm444 ILSpy/ILSpy.icns $out/Applications/ILSpy.app/Contents/Resources/ILSpy.icns 85 + mkdir -p $out/Applications/ILSpy.app/Contents/MacOS 86 + ln -s $out/bin/ILSpy $out/Applications/ILSpy.app/Contents/MacOS/ILSpy 87 + ''; 88 89 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 90 91 projectFile = "ILSpy/ILSpy.csproj"; 92 nugetDeps = ./deps.json; ··· 119 lgpl21Only 120 mspl 121 ]; 122 + sourceProvenance = with sourceTypes; [ 123 + fromSource 124 + binaryBytecode 125 + binaryNativeCode 126 + ]; 127 + maintainers = with maintainers; [ 128 + AngryAnt 129 + emilytrau 130 + ]; 131 mainProgram = "ILSpy"; 132 }; 133 }
+469 -234
pkgs/applications/misc/avalonia-ilspy/deps.json
··· 2 { 3 "pname": "Avalonia", 4 "version": "0.10.13", 5 - "sha256": "1df46dvjyax8jjdcvdavpzq5bwxacrw71j557mcm1401vv3r1vn3" 6 }, 7 { 8 "pname": "Avalonia.Angle.Windows.Natives", 9 "version": "2.1.0.2020091801", 10 - "sha256": "04jm83cz7vkhhr6n2c9hya2k8i2462xbf6np4bidk55as0jdq43a" 11 }, 12 { 13 "pname": "Avalonia.AvaloniaEdit", 14 "version": "0.10.12.2", 15 - "sha256": "1sn8k71xcfnjxgxfqzdrv1hy7h7pvdk820nyzkmrf02gi77mx7nw" 16 }, 17 { 18 "pname": "Avalonia.Controls.DataGrid", 19 "version": "0.10.13", 20 - "sha256": "1yl402l5cwbv6gwy3p8r702ypp3p8w5wi8im25c2bjnv31889l8r" 21 }, 22 { 23 "pname": "Avalonia.Desktop", 24 "version": "0.10.13", 25 - "sha256": "1y206hrfwyg8023z0m7dik1hlir1r18h8q0f0zqz3sabyy5k276w" 26 }, 27 { 28 "pname": "Avalonia.Diagnostics", 29 "version": "0.10.13", 30 - "sha256": "11khr3w7gwlm1bajfh5zhrsfcfd9kbw5mbgwnbjq7i5lq9glriid" 31 }, 32 { 33 "pname": "Avalonia.FreeDesktop", 34 "version": "0.10.13", 35 - "sha256": "18gygzg12facawvzmfgpja4rsagy670dv1dcrx4shfl7w8l998jp" 36 }, 37 { 38 "pname": "Avalonia.Markup.Xaml.Loader", 39 "version": "0.10.13", 40 - "sha256": "187r64xpidliqbp9c3qar0grhn97ffvc0mp0gyrxxszrff9vf69k" 41 }, 42 { 43 "pname": "Avalonia.Native", 44 "version": "0.10.13", 45 - "sha256": "18b2pykfcgw9pyjmdqq7i1n8j330n7xrwyldl9bpkvahswinvhza" 46 }, 47 { 48 "pname": "Avalonia.Remote.Protocol", 49 "version": "0.10.13", 50 - "sha256": "0j0kdh6dbii59v972azhwq69rmak63lp5f5jqz3pi94mifx4bayy" 51 }, 52 { 53 "pname": "Avalonia.Skia", 54 "version": "0.10.13", 55 - "sha256": "0k5y0w164m03q278m4wr7zzf3vfq9nb0am9vmmprivpn1xwwa7ml" 56 }, 57 { 58 "pname": "Avalonia.Win32", 59 "version": "0.10.13", 60 - "sha256": "0jyl1rrn1n07dnqn76ijwhxgkc45dmsfh2d811n4695ndaz85nkl" 61 }, 62 { 63 "pname": "Avalonia.X11", 64 "version": "0.10.13", 65 - "sha256": "1y8x9hjdlxg4q8q958i364cbak8xjh4nldp38cnxwjir814p0xwh" 66 }, 67 { 68 "pname": "HarfBuzzSharp", 69 "version": "2.8.2-preview.178", 70 - "sha256": "1p5nwzl7jpypsd6df7hgcf47r977anjlyv21wacmalsj6lvdgnvn" 71 }, 72 { 73 "pname": "HarfBuzzSharp.NativeAssets.Linux", 74 "version": "2.8.2-preview.178", 75 - "sha256": "1402ylkxbgcnagcarqlfvg4gppy2pqs3bmin4n5mphva1g7bqb2p" 76 }, 77 { 78 "pname": "HarfBuzzSharp.NativeAssets.macOS", 79 "version": "2.8.2-preview.178", 80 - "sha256": "0p8miaclnbfpacc1jaqxwfg0yfx9byagi4j4k91d9621vd19i8b2" 81 }, 82 { 83 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 84 "version": "2.8.2-preview.178", 85 - "sha256": "1n9jay9sji04xly6n8bzz4591fgy8i65p21a8mv5ip9lsyj1c320" 86 }, 87 { 88 "pname": "HarfBuzzSharp.NativeAssets.Win32", 89 "version": "2.8.2-preview.178", 90 - "sha256": "1r5syii96wv8q558cvsqw3lr10cdw6677lyiy82p6i3if51v3mr7" 91 }, 92 { 93 "pname": "ICSharpCode.Decompiler", 94 "version": "7.1.0.6543", 95 - "sha256": "1xrajs5dcd7aqsg9ibhdcy39yrd8737kknkmqf907n7fqs2jxr46" 96 }, 97 { 98 "pname": "ICSharpCode.Decompiler", 99 "version": "7.2.1.6856", 100 - "sha256": "19z68rgzl93lh1h8anbgzw119mhvcgr9nh5q2nxk6qihl2mx97ba" 101 }, 102 { 103 "pname": "JetBrains.Annotations", 104 "version": "10.3.0", 105 - "sha256": "1grdx28ga9fp4hwwpwv354rizm8anfq4lp045q4ss41gvhggr3z8" 106 }, 107 { 108 "pname": "Microsoft.CodeAnalysis.Analyzers", 109 "version": "2.9.6", 110 - "sha256": "18mr1f0wpq0fir8vjnq0a8pz50zpnblr7sabff0yqx37c975934a" 111 }, 112 { 113 "pname": "Microsoft.CodeAnalysis.Common", 114 "version": "3.4.0", 115 - "sha256": "12rn6gl4viycwk3pz5hp5df63g66zvba4hnkwr3f0876jj5ivmsw" 116 }, 117 { 118 "pname": "Microsoft.CodeAnalysis.CSharp", 119 "version": "3.4.0", 120 - "sha256": "0rhylcwa95bxawcgixk64knv7p7xrykdjcabmx3gknk8hvj1ai9y" 121 }, 122 { 123 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 124 "version": "3.4.0", 125 - "sha256": "1h2f0z9xnw987x8bydka1sd42ijqjx973md6v1gvpy1qc6ad244g" 126 }, 127 { 128 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 129 "version": "3.4.0", 130 - "sha256": "195gqnpwqkg2wlvk8x6yzm7byrxfq9bki20xmhf6lzfsdw3z4mf2" 131 }, 132 { 133 "pname": "Microsoft.CSharp", 134 "version": "4.0.1", 135 - "sha256": "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj" 136 }, 137 { 138 "pname": "Microsoft.CSharp", 139 "version": "4.3.0", 140 - "sha256": "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb" 141 }, 142 { 143 "pname": "Microsoft.DiaSymReader", 144 "version": "1.4.0", 145 - "sha256": "0li9shnm941jza40kqfkbbys77mrr55nvi9h3maq9fipq4qwx92d" 146 }, 147 { 148 "pname": "Microsoft.DiaSymReader.Converter.Xml", 149 "version": "1.1.0-beta2-22164-02", 150 - "sha256": "1f8ha43xp0zy7kn1n98aaaapv6fdxl3a2qabg29fq74jzb16j9fp", 151 "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.diasymreader.converter.xml/1.1.0-beta2-22164-02/microsoft.diasymreader.converter.xml.1.1.0-beta2-22164-02.nupkg" 152 }, 153 { 154 "pname": "Microsoft.DiaSymReader.Native", 155 "version": "17.0.0-beta1.21524.1", 156 - "sha256": "0gash3xgzvcb78w2xqv003l0cld199zpfilnjbagwbr5ikdh6f3s" 157 }, 158 { 159 "pname": "Microsoft.DiaSymReader.PortablePdb", 160 "version": "1.7.0-beta-21525-03", 161 - "sha256": "0jb70rjgdif61jjc93pysfrr52hi5jlfmjdaqic7s0a3rfg0ahyk", 162 "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.diasymreader.portablepdb/1.7.0-beta-21525-03/microsoft.diasymreader.portablepdb.1.7.0-beta-21525-03.nupkg" 163 }, 164 { 165 "pname": "Microsoft.NETCore.Platforms", 166 "version": "1.0.1", 167 - "sha256": "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr" 168 }, 169 { 170 "pname": "Microsoft.NETCore.Platforms", 171 "version": "1.1.0", 172 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 173 }, 174 { 175 "pname": "Microsoft.NETCore.Platforms", 176 "version": "1.1.1", 177 - "sha256": "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj" 178 }, 179 { 180 "pname": "Microsoft.NETCore.Platforms", 181 "version": "2.0.0", 182 - "sha256": "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0" 183 }, 184 { 185 "pname": "Microsoft.NETCore.Platforms", 186 "version": "2.1.2", 187 - "sha256": "1507hnpr9my3z4w1r6xk5n0s1j3y6a2c2cnynj76za7cphxi1141" 188 }, 189 { 190 "pname": "Microsoft.NETCore.Platforms", 191 "version": "5.0.0", 192 - "sha256": "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc" 193 }, 194 { 195 "pname": "Microsoft.NETCore.Targets", 196 "version": "1.0.1", 197 - "sha256": "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p" 198 }, 199 { 200 "pname": "Microsoft.NETCore.Targets", 201 "version": "1.1.0", 202 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 203 }, 204 { 205 "pname": "Microsoft.NETCore.Targets", 206 "version": "1.1.3", 207 - "sha256": "05smkcyxir59rgrmp7d6327vvrlacdgldfxhmyr1azclvga1zfsq" 208 }, 209 { 210 "pname": "Microsoft.VisualStudio.Composition", 211 "version": "17.1.20", 212 - "sha256": "028bcxrzqc0nng2l7fqqaa0z1k4wc541jfhcdwjvw9f45q6nf3fs" 213 }, 214 { 215 "pname": "Microsoft.VisualStudio.Composition.Analyzers", 216 "version": "17.1.20", 217 - "sha256": "14fm8j1bvqh0bpfg3x814c1m747q99i4q3xplqb8db7l2xkn3v7a" 218 }, 219 { 220 "pname": "Microsoft.VisualStudio.Validation", 221 "version": "17.0.34", 222 - "sha256": "09la67gw6xdss3as3ph0ql3b3zhblni2qmkma9gz53kx1hav9ygp" 223 }, 224 { 225 "pname": "Microsoft.Win32.Primitives", 226 "version": "4.0.1", 227 - "sha256": "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7" 228 }, 229 { 230 "pname": "Microsoft.Win32.Registry", 231 "version": "4.0.0", 232 - "sha256": "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k" 233 }, 234 { 235 "pname": "Microsoft.Win32.Registry", 236 "version": "5.0.0", 237 - "sha256": "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n" 238 }, 239 { 240 "pname": "Microsoft.Win32.SystemEvents", 241 "version": "4.5.0", 242 - "sha256": "0fnkv3ky12227zqg4zshx4kw2mvysq2ppxjibfw02cc3iprv4njq" 243 }, 244 { 245 "pname": "Mono.Cecil", 246 "version": "0.11.3", 247 - "sha256": "0xcx7pk9y2n1hr15c0l1balzi69kw5gy8dk7sb8jwqyyvm35q4j3" 248 }, 249 { 250 "pname": "NETStandard.Library", 251 - "version": "2.0.3", 252 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 253 }, 254 { 255 "pname": "Newtonsoft.Json", 256 "version": "9.0.1", 257 - "sha256": "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r" 258 }, 259 { 260 "pname": "NuGet.Client", 261 "version": "4.2.0", 262 - "sha256": "1s34w7yi0xcm0hi9g32xx9njy52hjkh4gbizldvpp48mkki6bfrl" 263 }, 264 { 265 "pname": "NuGet.Common", 266 "version": "4.2.0", 267 - "sha256": "0j8bk9nkaxcf52az2rxhx27rqn7hs9mmw0p48i0x7g8i9b40wvwc" 268 }, 269 { 270 "pname": "NuGet.ContentModel", 271 "version": "4.2.0", 272 - "sha256": "1989zmdgwh13zwg9kafapdka6p46i50iw434fb8k22jp6amnwnvm" 273 }, 274 { 275 "pname": "NuGet.Frameworks", 276 "version": "4.2.0", 277 - "sha256": "0dwzg8kq0fwdjzl00ag969sxakj3brppr4y7k37yx5w1slj7wsb3" 278 }, 279 { 280 "pname": "NuGet.Packaging", 281 "version": "4.2.0", 282 - "sha256": "1g83ry4x0zlcdcgwd7c8daxig4cx77jics6rlfasy223hyvss8p3" 283 }, 284 { 285 "pname": "NuGet.Packaging.Core", 286 "version": "4.2.0", 287 - "sha256": "11dpszywsxb12ybx176z2703181xixzhxg3w3rc8ivw699ivsdfk" 288 }, 289 { 290 "pname": "NuGet.Packaging.Core.Types", 291 "version": "4.2.0", 292 - "sha256": "031gzbs5sqb46c2rbqpybc9bw0i7ilidbbv2k7rdas3300cjp5kj" 293 }, 294 { 295 "pname": "NuGet.Repositories", 296 "version": "4.2.0", 297 - "sha256": "0w18lj7q85grdd563p429cg0pg8hi9xmsrr4pzskha139vhfq0lp" 298 }, 299 { 300 "pname": "NuGet.RuntimeModel", 301 "version": "4.2.0", 302 - "sha256": "0k59ww2zk56bsqici62zn59h19wp4ai9v395hy5mq6wl6mz6qaax" 303 }, 304 { 305 "pname": "NuGet.Versioning", 306 "version": "4.2.0", 307 - "sha256": "1mx7b4hgdhl6g7yzp3lknmkxkyfjw372nxpsmvdznwhg214iz2d3" 308 }, 309 { 310 "pname": "runtime.any.System.Collections", 311 "version": "4.3.0", 312 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 313 }, 314 { 315 "pname": "runtime.any.System.Diagnostics.Tools", 316 "version": "4.3.0", 317 - "sha256": "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk" 318 }, 319 { 320 "pname": "runtime.any.System.Diagnostics.Tracing", 321 "version": "4.3.0", 322 - "sha256": "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn" 323 }, 324 { 325 "pname": "runtime.any.System.Globalization", 326 "version": "4.3.0", 327 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 328 }, 329 { 330 "pname": "runtime.any.System.IO", 331 "version": "4.3.0", 332 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 333 }, 334 { 335 "pname": "runtime.any.System.Reflection", 336 "version": "4.3.0", 337 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 338 }, 339 { 340 "pname": "runtime.any.System.Reflection.Extensions", 341 "version": "4.3.0", 342 - "sha256": "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33" 343 }, 344 { 345 "pname": "runtime.any.System.Reflection.Primitives", 346 "version": "4.3.0", 347 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 348 }, 349 { 350 "pname": "runtime.any.System.Resources.ResourceManager", 351 "version": "4.3.0", 352 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 353 }, 354 { 355 "pname": "runtime.any.System.Runtime", 356 "version": "4.3.0", 357 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 358 }, 359 { 360 "pname": "runtime.any.System.Runtime.Handles", 361 "version": "4.3.0", 362 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 363 }, 364 { 365 "pname": "runtime.any.System.Runtime.InteropServices", 366 "version": "4.3.0", 367 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 368 }, 369 { 370 "pname": "runtime.any.System.Text.Encoding", 371 "version": "4.3.0", 372 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 373 }, 374 { 375 "pname": "runtime.any.System.Text.Encoding.Extensions", 376 "version": "4.3.0", 377 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 378 }, 379 { 380 "pname": "runtime.any.System.Threading.Tasks", 381 "version": "4.3.0", 382 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 383 }, 384 { 385 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 386 "version": "4.3.0", 387 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 388 }, 389 { 390 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 391 "version": "4.3.0", 392 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 393 }, 394 { 395 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 396 "version": "4.3.0", 397 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 398 }, 399 { 400 "pname": "runtime.native.System", 401 "version": "4.0.0", 402 - "sha256": "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf" 403 }, 404 { 405 "pname": "runtime.native.System", 406 "version": "4.3.0", 407 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 408 }, 409 { 410 "pname": "runtime.native.System.IO.Compression", 411 "version": "4.3.0", 412 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 413 }, 414 { 415 "pname": "runtime.native.System.Security.Cryptography", 416 "version": "4.0.0", 417 - "sha256": "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9" 418 }, 419 { 420 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 421 "version": "4.3.0", 422 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 423 }, 424 { 425 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 426 "version": "4.3.0", 427 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 428 }, 429 { 430 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 431 "version": "4.3.0", 432 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 433 }, 434 { 435 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 436 "version": "4.3.0", 437 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 438 }, 439 { 440 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 441 "version": "4.3.0", 442 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 443 }, 444 { 445 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 446 "version": "4.3.0", 447 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 448 }, 449 { 450 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 451 "version": "4.3.0", 452 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 453 }, 454 { 455 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 456 "version": "4.3.0", 457 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 458 }, 459 { 460 "pname": "runtime.unix.Microsoft.Win32.Primitives", 461 "version": "4.3.0", 462 - "sha256": "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id" 463 }, 464 { 465 "pname": "runtime.unix.System.Diagnostics.Debug", 466 "version": "4.3.0", 467 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 468 }, 469 { 470 "pname": "runtime.unix.System.IO.FileSystem", 471 "version": "4.3.0", 472 - "sha256": "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix" 473 }, 474 { 475 "pname": "runtime.unix.System.Private.Uri", 476 "version": "4.3.0", 477 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 478 }, 479 { 480 "pname": "runtime.unix.System.Runtime.Extensions", 481 "version": "4.3.0", 482 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 483 }, 484 { 485 "pname": "SkiaSharp", 486 "version": "2.88.0-preview.178", 487 - "sha256": "062g14s6b2bixanpwihj3asm3jwvfw15mhvzqv6901afrlgzx4nk" 488 }, 489 { 490 "pname": "SkiaSharp.NativeAssets.Linux", 491 "version": "2.88.0-preview.178", 492 - "sha256": "07kga1j51l3l302nvf537zg5clf6rflinjy0xd6i06cmhpkf3ksw" 493 }, 494 { 495 "pname": "SkiaSharp.NativeAssets.macOS", 496 "version": "2.88.0-preview.178", 497 - "sha256": "14p95nxccs6yq4rn2h9zbb60k0232k6349zdpy31jcfr6gc99cgi" 498 }, 499 { 500 "pname": "SkiaSharp.NativeAssets.WebAssembly", 501 "version": "2.88.0-preview.178", 502 - "sha256": "09jmcg5k1vpsal8jfs90mwv0isf2y5wq3h4hd77rv6vffn5ic4sm" 503 }, 504 { 505 "pname": "SkiaSharp.NativeAssets.Win32", 506 "version": "2.88.0-preview.178", 507 - "sha256": "0ficil702lv3fvwpngbqh5l85i05l5jafzyh4jprzshr2qbnd8nl" 508 }, 509 { 510 - "pname": "System.Buffers", 511 "version": "4.3.0", 512 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 513 }, 514 { 515 "pname": "System.Buffers", 516 - "version": "4.4.0", 517 - "sha256": "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19" 518 }, 519 { 520 "pname": "System.Buffers", 521 - "version": "4.5.1", 522 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 523 }, 524 { 525 "pname": "System.Collections", 526 "version": "4.0.11", 527 - "sha256": "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6" 528 }, 529 { 530 "pname": "System.Collections", 531 "version": "4.3.0", 532 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 533 }, 534 { 535 "pname": "System.Collections.Concurrent", 536 "version": "4.0.12", 537 - "sha256": "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc" 538 }, 539 { 540 "pname": "System.Collections.Immutable", 541 "version": "1.5.0", 542 - "sha256": "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06" 543 }, 544 { 545 "pname": "System.Collections.Immutable", 546 "version": "1.6.0", 547 - "sha256": "1pbxzdz3pwqyybzv5ff2b7nrc281bhg7hq34w0fn1w3qfgrbwyw2" 548 }, 549 { 550 "pname": "System.Collections.Immutable", 551 "version": "5.0.0", 552 - "sha256": "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r" 553 }, 554 { 555 "pname": "System.ComponentModel.Annotations", 556 "version": "4.5.0", 557 - "sha256": "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p" 558 }, 559 { 560 "pname": "System.ComponentModel.Composition", 561 "version": "6.0.0", 562 - "sha256": "16zfx5mivkkykp76krw8x68izmjf79ldfmn26k9x3m55lmp9i77c" 563 }, 564 { 565 "pname": "System.Composition", 566 "version": "6.0.0", 567 - "sha256": "1p7hysns39cc24af6dwd4m48bqjsrr3clvi4aws152mh2fgyg50z" 568 }, 569 { 570 "pname": "System.Composition.AttributedModel", 571 "version": "6.0.0", 572 - "sha256": "1mqrblb0l65hw39d0hnspqcv85didpn4wbiwhfgj4784wzqx2w6k" 573 }, 574 { 575 "pname": "System.Composition.Convention", 576 "version": "6.0.0", 577 - "sha256": "02km3yb94p1c4s7liyhkmda0g71zm1rc8ijsfmy4bnlkq15xjw3b" 578 }, 579 { 580 "pname": "System.Composition.Hosting", 581 "version": "6.0.0", 582 - "sha256": "0big5nk8c44rxp6cfykhk7rxvn2cgwa99w6c3v2a36adc3lj36ky" 583 }, 584 { 585 "pname": "System.Composition.Runtime", 586 "version": "6.0.0", 587 - "sha256": "0vq5ik63yii1784gsa2f2kx9w6xllmm8b8rk0arid1jqdj1nyrlw" 588 }, 589 { 590 "pname": "System.Composition.TypedParts", 591 "version": "6.0.0", 592 - "sha256": "0y9pq3y60nyrpfy51f576a0qjjdh61mcv8vnik32pm4bz56h9q72" 593 }, 594 { 595 "pname": "System.Diagnostics.Debug", 596 "version": "4.0.11", 597 - "sha256": "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz" 598 }, 599 { 600 "pname": "System.Diagnostics.Debug", 601 "version": "4.3.0", 602 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 603 }, 604 { 605 "pname": "System.Diagnostics.Process", 606 "version": "4.1.0", 607 - "sha256": "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s" 608 }, 609 { 610 "pname": "System.Diagnostics.Tools", 611 "version": "4.0.1", 612 - "sha256": "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x" 613 }, 614 { 615 "pname": "System.Diagnostics.Tracing", 616 "version": "4.1.0", 617 - "sha256": "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394" 618 }, 619 { 620 "pname": "System.Diagnostics.Tracing", 621 "version": "4.3.0", 622 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 623 }, 624 { 625 "pname": "System.Drawing.Common", 626 "version": "4.5.0", 627 - "sha256": "0knqa0zsm91nfr34br8gx5kjqq4v81zdhqkacvs2hzc8nqk0ddhc" 628 }, 629 { 630 "pname": "System.Dynamic.Runtime", 631 "version": "4.0.11", 632 - "sha256": "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9" 633 }, 634 { 635 "pname": "System.Dynamic.Runtime", 636 "version": "4.3.0", 637 - "sha256": "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk" 638 }, 639 { 640 "pname": "System.Globalization", 641 "version": "4.0.11", 642 - "sha256": "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d" 643 }, 644 { 645 "pname": "System.Globalization", 646 "version": "4.3.0", 647 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 648 }, 649 { 650 "pname": "System.IO", 651 "version": "4.1.0", 652 - "sha256": "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp" 653 }, 654 { 655 "pname": "System.IO", 656 "version": "4.3.0", 657 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 658 }, 659 { 660 "pname": "System.IO.Compression", 661 "version": "4.3.0", 662 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 663 }, 664 { 665 "pname": "System.IO.FileSystem", 666 "version": "4.0.1", 667 - "sha256": "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1" 668 }, 669 { 670 "pname": "System.IO.FileSystem", 671 "version": "4.3.0", 672 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 673 }, 674 { 675 "pname": "System.IO.FileSystem.Primitives", 676 "version": "4.0.1", 677 - "sha256": "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612" 678 }, 679 { 680 "pname": "System.IO.FileSystem.Primitives", 681 "version": "4.3.0", 682 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 683 }, 684 { 685 "pname": "System.Linq", 686 "version": "4.1.0", 687 - "sha256": "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5" 688 }, 689 { 690 "pname": "System.Linq", 691 "version": "4.3.0", 692 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 693 }, 694 { 695 "pname": "System.Linq.Expressions", 696 "version": "4.1.0", 697 - "sha256": "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg" 698 }, 699 { 700 "pname": "System.Linq.Expressions", 701 "version": "4.3.0", 702 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 703 }, 704 { 705 "pname": "System.Memory", 706 "version": "4.5.3", 707 - "sha256": "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a" 708 }, 709 { 710 - "pname": "System.Memory", 711 - "version": "4.5.4", 712 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 713 }, 714 { 715 - "pname": "System.Numerics.Vectors", 716 - "version": "4.4.0", 717 - "sha256": "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba" 718 }, 719 { 720 "pname": "System.Numerics.Vectors", 721 "version": "4.5.0", 722 - "sha256": "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59" 723 }, 724 { 725 "pname": "System.ObjectModel", 726 "version": "4.0.12", 727 - "sha256": "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj" 728 }, 729 { 730 "pname": "System.ObjectModel", 731 "version": "4.3.0", 732 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 733 }, 734 { 735 "pname": "System.Private.Uri", 736 "version": "4.3.0", 737 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 738 }, 739 { 740 "pname": "System.Reactive", 741 "version": "5.0.0", 742 - "sha256": "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik" 743 }, 744 { 745 "pname": "System.Reflection", 746 "version": "4.1.0", 747 - "sha256": "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9" 748 }, 749 { 750 "pname": "System.Reflection", 751 "version": "4.3.0", 752 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 753 }, 754 { 755 "pname": "System.Reflection.Emit", 756 "version": "4.0.1", 757 - "sha256": "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp" 758 }, 759 { 760 "pname": "System.Reflection.Emit", 761 "version": "4.3.0", 762 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 763 }, 764 { 765 "pname": "System.Reflection.Emit", 766 "version": "4.7.0", 767 - "sha256": "121l1z2ypwg02yz84dy6gr82phpys0njk7yask3sihgy214w43qp" 768 }, 769 { 770 "pname": "System.Reflection.Emit.ILGeneration", 771 "version": "4.0.1", 772 - "sha256": "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0" 773 }, 774 { 775 "pname": "System.Reflection.Emit.ILGeneration", 776 "version": "4.3.0", 777 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 778 - }, 779 - { 780 - "pname": "System.Reflection.Emit.ILGeneration", 781 - "version": "4.7.0", 782 - "sha256": "0l8jpxhpgjlf1nkz5lvp61r4kfdbhr29qi8aapcxn3izd9wd0j8r" 783 }, 784 { 785 "pname": "System.Reflection.Emit.Lightweight", 786 "version": "4.0.1", 787 - "sha256": "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr" 788 }, 789 { 790 "pname": "System.Reflection.Emit.Lightweight", 791 "version": "4.3.0", 792 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 793 }, 794 { 795 "pname": "System.Reflection.Extensions", 796 "version": "4.0.1", 797 - "sha256": "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn" 798 }, 799 { 800 "pname": "System.Reflection.Extensions", 801 "version": "4.3.0", 802 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 803 }, 804 { 805 "pname": "System.Reflection.Metadata", 806 "version": "1.6.0", 807 - "sha256": "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4" 808 }, 809 { 810 "pname": "System.Reflection.Metadata", 811 "version": "5.0.0", 812 - "sha256": "17qsl5nanlqk9iz0l5wijdn6ka632fs1m1fvx18dfgswm258r3ss" 813 }, 814 { 815 "pname": "System.Reflection.Primitives", 816 "version": "4.0.1", 817 - "sha256": "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28" 818 }, 819 { 820 "pname": "System.Reflection.Primitives", 821 "version": "4.3.0", 822 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 823 }, 824 { 825 "pname": "System.Reflection.TypeExtensions", 826 "version": "4.1.0", 827 - "sha256": "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7" 828 }, 829 { 830 "pname": "System.Reflection.TypeExtensions", 831 "version": "4.3.0", 832 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 833 }, 834 { 835 "pname": "System.Reflection.TypeExtensions", 836 "version": "4.7.0", 837 - "sha256": "04qw9km34pmzr2alckb3mqdb4fpqwlvzk59lg8c7jfidghcl4jqq" 838 }, 839 { 840 "pname": "System.Resources.ResourceManager", 841 "version": "4.0.1", 842 - "sha256": "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi" 843 }, 844 { 845 "pname": "System.Resources.ResourceManager", 846 "version": "4.3.0", 847 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 848 }, 849 { 850 "pname": "System.Runtime", 851 "version": "4.1.0", 852 - "sha256": "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m" 853 }, 854 { 855 "pname": "System.Runtime", 856 "version": "4.3.0", 857 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 858 }, 859 { 860 "pname": "System.Runtime", 861 "version": "4.3.1", 862 - "sha256": "03ch4d2acf6q037a4njxpll2kkx3dwzlg07yxr4z5m6j1kqgmm27" 863 }, 864 { 865 "pname": "System.Runtime.CompilerServices.Unsafe", 866 "version": "4.5.2", 867 - "sha256": "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi" 868 - }, 869 - { 870 - "pname": "System.Runtime.CompilerServices.Unsafe", 871 - "version": "4.5.3", 872 - "sha256": "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln" 873 }, 874 { 875 "pname": "System.Runtime.CompilerServices.Unsafe", 876 "version": "4.6.0", 877 - "sha256": "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m" 878 }, 879 { 880 "pname": "System.Runtime.Extensions", 881 "version": "4.1.0", 882 - "sha256": "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z" 883 }, 884 { 885 "pname": "System.Runtime.Extensions", 886 "version": "4.3.0", 887 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 888 }, 889 { 890 "pname": "System.Runtime.Extensions", 891 "version": "4.3.1", 892 - "sha256": "1bzkwqm1yhvm70yq2bx2s3mqfx2lr01sqsay8cl5n5xcbq07ynf6" 893 }, 894 { 895 "pname": "System.Runtime.Handles", 896 "version": "4.0.1", 897 - "sha256": "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g" 898 }, 899 { 900 "pname": "System.Runtime.Handles", 901 "version": "4.3.0", 902 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 903 }, 904 { 905 "pname": "System.Runtime.InteropServices", 906 "version": "4.1.0", 907 - "sha256": "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1" 908 }, 909 { 910 "pname": "System.Runtime.InteropServices", 911 "version": "4.3.0", 912 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 913 }, 914 { 915 - "pname": "System.Runtime.InteropServices.WindowsRuntime", 916 "version": "4.3.0", 917 - "sha256": "0bpsy91yqm2ryp5y9li8p6yh4yrxcvg9zvm569ifw25rpy67bgp9" 918 }, 919 { 920 "pname": "System.Runtime.Numerics", 921 "version": "4.0.1", 922 - "sha256": "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn" 923 }, 924 { 925 "pname": "System.Runtime.Serialization.Primitives", 926 "version": "4.1.1", 927 - "sha256": "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k" 928 }, 929 { 930 "pname": "System.Security.AccessControl", 931 "version": "5.0.0", 932 - "sha256": "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r" 933 }, 934 { 935 "pname": "System.Security.Cryptography.Algorithms", 936 "version": "4.2.0", 937 - "sha256": "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85" 938 }, 939 { 940 "pname": "System.Security.Cryptography.Encoding", 941 "version": "4.0.0", 942 - "sha256": "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4" 943 }, 944 { 945 "pname": "System.Security.Cryptography.Primitives", 946 "version": "4.0.0", 947 - "sha256": "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh" 948 }, 949 { 950 "pname": "System.Security.Principal.Windows", 951 "version": "4.7.0", 952 - "sha256": "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d" 953 }, 954 { 955 "pname": "System.Security.Principal.Windows", 956 "version": "5.0.0", 957 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 958 }, 959 { 960 "pname": "System.Text.Encoding", 961 "version": "4.0.11", 962 - "sha256": "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw" 963 }, 964 { 965 "pname": "System.Text.Encoding", 966 "version": "4.3.0", 967 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 968 }, 969 { 970 "pname": "System.Text.Encoding.CodePages", 971 "version": "4.5.1", 972 - "sha256": "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w" 973 }, 974 { 975 "pname": "System.Text.Encoding.Extensions", 976 "version": "4.3.0", 977 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 978 }, 979 { 980 "pname": "System.Text.RegularExpressions", 981 "version": "4.1.0", 982 - "sha256": "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7" 983 }, 984 { 985 "pname": "System.Text.RegularExpressions", 986 "version": "4.3.0", 987 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 988 }, 989 { 990 "pname": "System.Threading", 991 "version": "4.0.11", 992 - "sha256": "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls" 993 }, 994 { 995 "pname": "System.Threading", 996 "version": "4.3.0", 997 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 998 }, 999 { 1000 "pname": "System.Threading.Tasks", 1001 "version": "4.0.11", 1002 - "sha256": "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5" 1003 }, 1004 { 1005 "pname": "System.Threading.Tasks", 1006 "version": "4.3.0", 1007 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 1008 }, 1009 { 1010 "pname": "System.Threading.Tasks.Dataflow", 1011 "version": "5.0.0", 1012 - "sha256": "028fimgwn5j9fv6m547c975a8b90d9qcnb89k5crjyspsnjcqbhy" 1013 }, 1014 { 1015 "pname": "System.Threading.Tasks.Extensions", 1016 "version": "4.0.0", 1017 - "sha256": "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr" 1018 }, 1019 { 1020 "pname": "System.Threading.Tasks.Extensions", 1021 "version": "4.3.0", 1022 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 1023 }, 1024 { 1025 "pname": "System.Threading.Tasks.Extensions", 1026 "version": "4.5.3", 1027 - "sha256": "0g7r6hm572ax8v28axrdxz1gnsblg6kszq17g51pj14a5rn2af7i" 1028 - }, 1029 - { 1030 - "pname": "System.Threading.Tasks.Extensions", 1031 - "version": "4.5.4", 1032 - "sha256": "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153" 1033 }, 1034 { 1035 "pname": "System.Threading.Thread", 1036 "version": "4.0.0", 1037 - "sha256": "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc" 1038 }, 1039 { 1040 "pname": "System.Threading.ThreadPool", 1041 "version": "4.0.10", 1042 - "sha256": "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx" 1043 }, 1044 { 1045 "pname": "System.ValueTuple", 1046 "version": "4.5.0", 1047 - "sha256": "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy" 1048 }, 1049 { 1050 "pname": "System.Xml.ReaderWriter", 1051 "version": "4.0.11", 1052 - "sha256": "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5" 1053 }, 1054 { 1055 "pname": "System.Xml.ReaderWriter", 1056 "version": "4.3.1", 1057 - "sha256": "15f9vd7r0bxmyv754238bdckfg6sxaa3d4yx71hdzkz9k0mhjcky" 1058 }, 1059 { 1060 "pname": "System.Xml.XDocument", 1061 "version": "4.0.11", 1062 - "sha256": "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18" 1063 }, 1064 { 1065 "pname": "Tmds.DBus", 1066 "version": "0.9.0", 1067 - "sha256": "0vvx6sg8lxm23g5jvm5wh2gfs95mv85vd52lkq7d1b89bdczczf3" 1068 } 1069 ]
··· 2 { 3 "pname": "Avalonia", 4 "version": "0.10.13", 5 + "hash": "sha256-w+6Qx94BkFBZPaXIcHhmqvNV8L9btc2alKgrL3czxLU=" 6 }, 7 { 8 "pname": "Avalonia.Angle.Windows.Natives", 9 "version": "2.1.0.2020091801", 10 + "hash": "sha256-ahDcJNCqlNniItcat7owREQ0hfIwMWFNhnDu89lAVRI=" 11 }, 12 { 13 "pname": "Avalonia.AvaloniaEdit", 14 "version": "0.10.12.2", 15 + "hash": "sha256-3J5ez4lPAJfr/N4CgWbb98DjYdi5fez669I61sOZyOo=" 16 }, 17 { 18 "pname": "Avalonia.Controls.DataGrid", 19 "version": "0.10.13", 20 + "hash": "sha256-GdGEUBjbyiVYETWiyAtHd9zrBTgZ3eH5M3txVqgAhPo=" 21 }, 22 { 23 "pname": "Avalonia.Desktop", 24 "version": "0.10.13", 25 + "hash": "sha256-3Bwxi/dL6fHxBw5gBFHIIUcKw4ztVPCHAOh57jI0QPg=" 26 }, 27 { 28 "pname": "Avalonia.Diagnostics", 29 "version": "0.10.13", 30 + "hash": "sha256-LcZMX8K0xIPlsvytWviaqTnmdIa/QCfVCpXyd/jIcIY=" 31 }, 32 { 33 "pname": "Avalonia.FreeDesktop", 34 "version": "0.10.13", 35 + "hash": "sha256-V6KUKOKHOqhJz6yF3cAx/imdiZL3ufo3V0w5Ed5//qE=" 36 }, 37 { 38 "pname": "Avalonia.Markup.Xaml.Loader", 39 "version": "0.10.13", 40 + "hash": "sha256-Mxm3k3P5696zf+BWwLZzJ1mYH8gKD5buwpG2eDsx+aA=" 41 }, 42 { 43 "pname": "Avalonia.Native", 44 "version": "0.10.13", 45 + "hash": "sha256-6sNtI9dQ7XlXoo16nvuxYAyJbIgH41alv4k/5qa/YqE=" 46 }, 47 { 48 "pname": "Avalonia.Remote.Protocol", 49 "version": "0.10.13", 50 + "hash": "sha256-3qtFuouVpHjHx7K4cukwU9WcDObwK3HSTiXG1QxsE0g=" 51 }, 52 { 53 "pname": "Avalonia.Skia", 54 "version": "0.10.13", 55 + "hash": "sha256-tB7FeQ/27phvrTtVBZZN2O3h/j+Zk4qOwANUYgIHvkw=" 56 }, 57 { 58 "pname": "Avalonia.Win32", 59 "version": "0.10.13", 60 + "hash": "sha256-dNqCvmq2JENsCKgJ6HRthbD5OuQymmOxbQfYYHMO1Es=" 61 }, 62 { 63 "pname": "Avalonia.X11", 64 "version": "0.10.13", 65 + "hash": "sha256-kHdwSUA5St4tQ+M2agmUHU21GDEjopIwwuR12iRMHfk=" 66 }, 67 { 68 "pname": "HarfBuzzSharp", 69 "version": "2.8.2-preview.178", 70 + "hash": "sha256-dtvXNjVSU1WZ4kFsT6VV56R8iGMPHtdM09dfeejnttw=" 71 }, 72 { 73 "pname": "HarfBuzzSharp.NativeAssets.Linux", 74 "version": "2.8.2-preview.178", 75 + "hash": "sha256-Vyy8zgtqw1uLJTbWNTS+wt/7yNuO4qzYU5a91Sf1ApA=" 76 }, 77 { 78 "pname": "HarfBuzzSharp.NativeAssets.macOS", 79 "version": "2.8.2-preview.178", 80 + "hash": "sha256-YqGYQttBmNRCmkSS+JRfqTsPnuMdKxkYU9ctS5mKFV0=" 81 }, 82 { 83 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 84 "version": "2.8.2-preview.178", 85 + "hash": "sha256-QAwWpNc03Vh2RSqIW0xE/rmQCvl/IWs87QREqZNXMtk=" 86 }, 87 { 88 "pname": "HarfBuzzSharp.NativeAssets.Win32", 89 "version": "2.8.2-preview.178", 90 + "hash": "sha256-J9exQ3FxRHMF8tHTc4zhjYGQ6eBYb4ZKwWhzk2L0uuQ=" 91 }, 92 { 93 "pname": "ICSharpCode.Decompiler", 94 "version": "7.1.0.6543", 95 + "hash": "sha256-huQuhcbu2AOSw3XaOc84qGWfhmcNrpiexuo01oqWKvc=" 96 }, 97 { 98 "pname": "ICSharpCode.Decompiler", 99 "version": "7.2.1.6856", 100 + "hash": "sha256-ap3Uq6AwYjO7FbhAm/JjG9YUAv9vWYVggHQk+l9G5qc=" 101 }, 102 { 103 "pname": "JetBrains.Annotations", 104 "version": "10.3.0", 105 + "hash": "sha256-6I/8HtwvEK0JLgRcSrCzCtUfMylj88s5JNcl9ZDoLb8=" 106 }, 107 { 108 "pname": "Microsoft.CodeAnalysis.Analyzers", 109 "version": "2.9.6", 110 + "hash": "sha256-ioxUTmJndOyBc0vpk+my94PyL1IAW7lRjg7gy4ELuaI=" 111 }, 112 { 113 "pname": "Microsoft.CodeAnalysis.Common", 114 "version": "3.4.0", 115 + "hash": "sha256-XNcdi5TmIOBG5tNCotb+xrxhXCsXln/H5MzHTegzNos=" 116 }, 117 { 118 "pname": "Microsoft.CodeAnalysis.CSharp", 119 "version": "3.4.0", 120 + "hash": "sha256-PkUV5IZo2vlGr0sx2abP/dyz7SRm9vgYV32VpDijHmY=" 121 }, 122 { 123 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 124 "version": "3.4.0", 125 + "hash": "sha256-jxDRlGE4+Ltf2KbVcVKXWEZBmg5qNr9QPyhx29MHTsA=" 126 }, 127 { 128 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 129 "version": "3.4.0", 130 + "hash": "sha256-wlXyB2/afWocrB2IOFfCrme/Tv3edDQ35eJNzK/Fr6Q=" 131 }, 132 { 133 "pname": "Microsoft.CSharp", 134 "version": "4.0.1", 135 + "hash": "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8=" 136 }, 137 { 138 "pname": "Microsoft.CSharp", 139 "version": "4.3.0", 140 + "hash": "sha256-a3dAiPaVuky0wpcHmpTVtAQJNGZ2v91/oArA+dpJgj8=" 141 }, 142 { 143 "pname": "Microsoft.DiaSymReader", 144 "version": "1.4.0", 145 + "hash": "sha256-TaTOMcE3uoRVHTDFbUvJuZ6j/VrT4QmI+jKQVC3UKVI=" 146 }, 147 { 148 "pname": "Microsoft.DiaSymReader.Converter.Xml", 149 "version": "1.1.0-beta2-22164-02", 150 + "hash": "sha256-1yVpwvqSHOySeEthoQbtzZl9lVIKJRvsPP6D2wdRELk=", 151 "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.diasymreader.converter.xml/1.1.0-beta2-22164-02/microsoft.diasymreader.converter.xml.1.1.0-beta2-22164-02.nupkg" 152 }, 153 { 154 "pname": "Microsoft.DiaSymReader.Native", 155 "version": "17.0.0-beta1.21524.1", 156 + "hash": "sha256-ejgD24wlL/7UkpZGd39KoVEG6ABg4y44Oovt//qAWj0=" 157 }, 158 { 159 "pname": "Microsoft.DiaSymReader.PortablePdb", 160 "version": "1.7.0-beta-21525-03", 161 + "hash": "sha256-00MFnstDAX1YxKrJ6qgsEYqSs9P+jsSkDMbF9mQGZ0k=", 162 "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.diasymreader.portablepdb/1.7.0-beta-21525-03/microsoft.diasymreader.portablepdb.1.7.0-beta-21525-03.nupkg" 163 }, 164 { 165 "pname": "Microsoft.NETCore.Platforms", 166 "version": "1.0.1", 167 + "hash": "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=" 168 }, 169 { 170 "pname": "Microsoft.NETCore.Platforms", 171 "version": "1.1.0", 172 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 173 }, 174 { 175 "pname": "Microsoft.NETCore.Platforms", 176 "version": "1.1.1", 177 + "hash": "sha256-8hLiUKvy/YirCWlFwzdejD2Db3DaXhHxT7GSZx/znJg=" 178 }, 179 { 180 "pname": "Microsoft.NETCore.Platforms", 181 "version": "2.0.0", 182 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 183 }, 184 { 185 "pname": "Microsoft.NETCore.Platforms", 186 "version": "2.1.2", 187 + "hash": "sha256-gYQQO7zsqG+OtN4ywYQyfsiggS2zmxw4+cPXlK+FB5Q=" 188 }, 189 { 190 "pname": "Microsoft.NETCore.Platforms", 191 "version": "5.0.0", 192 + "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 193 }, 194 { 195 "pname": "Microsoft.NETCore.Targets", 196 "version": "1.0.1", 197 + "hash": "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=" 198 }, 199 { 200 "pname": "Microsoft.NETCore.Targets", 201 "version": "1.1.0", 202 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 203 }, 204 { 205 "pname": "Microsoft.NETCore.Targets", 206 "version": "1.1.3", 207 + "hash": "sha256-WLsf1NuUfRWyr7C7Rl9jiua9jximnVvzy6nk2D2bVRc=" 208 }, 209 { 210 "pname": "Microsoft.VisualStudio.Composition", 211 "version": "17.1.20", 212 + "hash": "sha256-2g1nDS7EJb4lbww6GUhhnMzwgVIYu0PFsxYw/HNnCwk=" 213 }, 214 { 215 "pname": "Microsoft.VisualStudio.Composition.Analyzers", 216 "version": "17.1.20", 217 + "hash": "sha256-6uxhZxf0rIYWprcPTGJK+JBTAyMB9fHcXQDivYJE1ZE=" 218 }, 219 { 220 "pname": "Microsoft.VisualStudio.Validation", 221 "version": "17.0.34", 222 + "hash": "sha256-9/m0FQx9jvJfUnVWLKKlC/6xBsUA3qHV0Lp1w98xiiY=" 223 }, 224 { 225 "pname": "Microsoft.Win32.Primitives", 226 "version": "4.0.1", 227 + "hash": "sha256-B4t5El/ViBdxALMcpZulewc4j/3SIXf71HhJWhm4Ctk=" 228 + }, 229 + { 230 + "pname": "Microsoft.Win32.Primitives", 231 + "version": "4.3.0", 232 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 233 }, 234 { 235 "pname": "Microsoft.Win32.Registry", 236 "version": "4.0.0", 237 + "hash": "sha256-M/06F/Z2wTHCh4pZOgtCjUGLD1FJXEJKCmzOeFMl7uo=" 238 }, 239 { 240 "pname": "Microsoft.Win32.Registry", 241 "version": "5.0.0", 242 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 243 }, 244 { 245 "pname": "Microsoft.Win32.SystemEvents", 246 "version": "4.5.0", 247 + "hash": "sha256-WFqy842DMQG4W1H2ewXWflfBJ+lQf/LwP0KI4OfY0zo=" 248 }, 249 { 250 "pname": "Mono.Cecil", 251 "version": "0.11.3", 252 + "hash": "sha256-QxJcRt3eYy7R0mc25F/hM5n4qVqBAlZChsEKn+Y9nXU=" 253 }, 254 { 255 "pname": "NETStandard.Library", 256 + "version": "1.6.0", 257 + "hash": "sha256-ExWI1EKDCRishcfAeHVS/RoJphqSqohmJIC/wz3ZtVo=" 258 + }, 259 + { 260 + "pname": "NETStandard.Library", 261 + "version": "1.6.1", 262 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 263 }, 264 { 265 "pname": "Newtonsoft.Json", 266 "version": "9.0.1", 267 + "hash": "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU=" 268 }, 269 { 270 "pname": "NuGet.Client", 271 "version": "4.2.0", 272 + "hash": "sha256-NLtl4pwVkXt3oz+uR+CUUBQvbepdjJciBJV1EP3hZOg=" 273 }, 274 { 275 "pname": "NuGet.Common", 276 "version": "4.2.0", 277 + "hash": "sha256-jG8OyEoRvdNBROQCXmvS8Ficj+iwZ/GVKI51NW2aC0k=" 278 }, 279 { 280 "pname": "NuGet.ContentModel", 281 "version": "4.2.0", 282 + "hash": "sha256-dVtuqzJXCjHRcmQQHkGJhlyjZrvKqZke/yNA/lr9CaU=" 283 }, 284 { 285 "pname": "NuGet.Frameworks", 286 "version": "4.2.0", 287 + "hash": "sha256-Y2l+JNWBl+7PmMeTfG9eQ07VdTLpKQDol407gCd6nzc=" 288 }, 289 { 290 "pname": "NuGet.Packaging", 291 "version": "4.2.0", 292 + "hash": "sha256-4yKtt4dDCK+Vo9loFuU5nZEXu2qIncYfa4x+0InPA70=" 293 }, 294 { 295 "pname": "NuGet.Packaging.Core", 296 "version": "4.2.0", 297 + "hash": "sha256-0zW9Y0qG74hYHny8Dn+PPaAwwBHfnNCXF2F1zf3Xt4U=" 298 }, 299 { 300 "pname": "NuGet.Packaging.Core.Types", 301 "version": "4.2.0", 302 + "hash": "sha256-cpYrGQBjaNXymWKv1SKNJwK+Elv+4pUFM2RhXfT6Lww=" 303 }, 304 { 305 "pname": "NuGet.Repositories", 306 "version": "4.2.0", 307 + "hash": "sha256-lwLs4E4jKDj1vyRnXXuKEL0LHkuC3GFKa/kVhI+kKHA=" 308 }, 309 { 310 "pname": "NuGet.RuntimeModel", 311 "version": "4.2.0", 312 + "hash": "sha256-XSlsfjWUG1yLhyWNnaIil6cAU7FfmMgi1suU+QXnqUw=" 313 }, 314 { 315 "pname": "NuGet.Versioning", 316 "version": "4.2.0", 317 + "hash": "sha256-o4kfSRAPcvvbrvp2K87g0vnZZ7WTjvv9eYbC9iBZp9c=" 318 }, 319 { 320 "pname": "runtime.any.System.Collections", 321 "version": "4.3.0", 322 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 323 }, 324 { 325 "pname": "runtime.any.System.Diagnostics.Tools", 326 "version": "4.3.0", 327 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 328 }, 329 { 330 "pname": "runtime.any.System.Diagnostics.Tracing", 331 "version": "4.3.0", 332 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 333 }, 334 { 335 "pname": "runtime.any.System.Globalization", 336 "version": "4.3.0", 337 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 338 + }, 339 + { 340 + "pname": "runtime.any.System.Globalization.Calendars", 341 + "version": "4.3.0", 342 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 343 }, 344 { 345 "pname": "runtime.any.System.IO", 346 "version": "4.3.0", 347 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 348 }, 349 { 350 "pname": "runtime.any.System.Reflection", 351 "version": "4.3.0", 352 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 353 }, 354 { 355 "pname": "runtime.any.System.Reflection.Extensions", 356 "version": "4.3.0", 357 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 358 }, 359 { 360 "pname": "runtime.any.System.Reflection.Primitives", 361 "version": "4.3.0", 362 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 363 }, 364 { 365 "pname": "runtime.any.System.Resources.ResourceManager", 366 "version": "4.3.0", 367 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 368 }, 369 { 370 "pname": "runtime.any.System.Runtime", 371 "version": "4.3.0", 372 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 373 }, 374 { 375 "pname": "runtime.any.System.Runtime.Handles", 376 "version": "4.3.0", 377 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 378 }, 379 { 380 "pname": "runtime.any.System.Runtime.InteropServices", 381 "version": "4.3.0", 382 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 383 }, 384 { 385 "pname": "runtime.any.System.Text.Encoding", 386 "version": "4.3.0", 387 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 388 }, 389 { 390 "pname": "runtime.any.System.Text.Encoding.Extensions", 391 "version": "4.3.0", 392 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 393 }, 394 { 395 "pname": "runtime.any.System.Threading.Tasks", 396 "version": "4.3.0", 397 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 398 + }, 399 + { 400 + "pname": "runtime.any.System.Threading.Timer", 401 + "version": "4.3.0", 402 + "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" 403 }, 404 { 405 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 406 "version": "4.3.0", 407 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 408 }, 409 { 410 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 411 "version": "4.3.0", 412 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 413 }, 414 { 415 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 416 "version": "4.3.0", 417 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 418 }, 419 { 420 "pname": "runtime.native.System", 421 "version": "4.0.0", 422 + "hash": "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894=" 423 }, 424 { 425 "pname": "runtime.native.System", 426 "version": "4.3.0", 427 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 428 }, 429 { 430 "pname": "runtime.native.System.IO.Compression", 431 "version": "4.3.0", 432 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 433 + }, 434 + { 435 + "pname": "runtime.native.System.Net.Http", 436 + "version": "4.0.1", 437 + "hash": "sha256-5nWnTQrA1T6t9r8MqIiV4yTNu+IH0of2OX1qteoS+8E=" 438 + }, 439 + { 440 + "pname": "runtime.native.System.Net.Http", 441 + "version": "4.3.0", 442 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 443 }, 444 { 445 "pname": "runtime.native.System.Security.Cryptography", 446 "version": "4.0.0", 447 + "hash": "sha256-6Q8eYzC32BbGIiTHoQaE6B3cD81vYQcH5SCswYRSp0w=" 448 + }, 449 + { 450 + "pname": "runtime.native.System.Security.Cryptography.Apple", 451 + "version": "4.3.0", 452 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 453 }, 454 { 455 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 456 "version": "4.3.0", 457 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 458 }, 459 { 460 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 461 "version": "4.3.0", 462 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 463 }, 464 { 465 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 466 "version": "4.3.0", 467 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 468 + }, 469 + { 470 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 471 + "version": "4.3.0", 472 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 473 }, 474 { 475 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 476 "version": "4.3.0", 477 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 478 }, 479 { 480 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 481 "version": "4.3.0", 482 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 483 }, 484 { 485 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 486 "version": "4.3.0", 487 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 488 }, 489 { 490 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 491 "version": "4.3.0", 492 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 493 }, 494 { 495 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 496 "version": "4.3.0", 497 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 498 }, 499 { 500 "pname": "runtime.unix.Microsoft.Win32.Primitives", 501 "version": "4.3.0", 502 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 503 + }, 504 + { 505 + "pname": "runtime.unix.System.Console", 506 + "version": "4.3.1", 507 + "hash": "sha256-dxyn/1Px4FKLZ2QMUrkFpW619Y1lhPeTiGLWYM6IbpY=" 508 }, 509 { 510 "pname": "runtime.unix.System.Diagnostics.Debug", 511 "version": "4.3.0", 512 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 513 }, 514 { 515 "pname": "runtime.unix.System.IO.FileSystem", 516 "version": "4.3.0", 517 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 518 + }, 519 + { 520 + "pname": "runtime.unix.System.Net.Primitives", 521 + "version": "4.3.0", 522 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 523 + }, 524 + { 525 + "pname": "runtime.unix.System.Net.Sockets", 526 + "version": "4.3.0", 527 + "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" 528 }, 529 { 530 "pname": "runtime.unix.System.Private.Uri", 531 "version": "4.3.0", 532 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 533 }, 534 { 535 "pname": "runtime.unix.System.Runtime.Extensions", 536 "version": "4.3.0", 537 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 538 }, 539 { 540 "pname": "SkiaSharp", 541 "version": "2.88.0-preview.178", 542 + "hash": "sha256-05L+H81OBZDMxn/DWgJ3m8tRtRoSRn6t6nGJZTQJTxg=" 543 }, 544 { 545 "pname": "SkiaSharp.NativeAssets.Linux", 546 "version": "2.88.0-preview.178", 547 + "hash": "sha256-XM/h5oWVGRBN68BLG6nLxlFW3j+juG0FGHTQUGRQbx4=" 548 }, 549 { 550 "pname": "SkiaSharp.NativeAssets.macOS", 551 "version": "2.88.0-preview.178", 552 + "hash": "sha256-8bGU2DPZMRmGv+0nMswUQ4AJzFo/QWEzwd5oxrot6ZI=" 553 }, 554 { 555 "pname": "SkiaSharp.NativeAssets.WebAssembly", 556 "version": "2.88.0-preview.178", 557 + "hash": "sha256-VRMWi3Vum53PaZDAgXnxwukINq8gaScRVfruMMtjVSY=" 558 }, 559 { 560 "pname": "SkiaSharp.NativeAssets.Win32", 561 "version": "2.88.0-preview.178", 562 + "hash": "sha256-1KJmFxYZ6p+vJNB/p2ShBcSCaIF4PXv5dmNTAQ6NLDo=" 563 }, 564 { 565 + "pname": "System.AppContext", 566 + "version": "4.1.0", 567 + "hash": "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs=" 568 + }, 569 + { 570 + "pname": "System.AppContext", 571 "version": "4.3.0", 572 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 573 }, 574 { 575 "pname": "System.Buffers", 576 + "version": "4.0.0", 577 + "hash": "sha256-+YUymoyS0O+xVyF2+LiAdZlMww8nofPN4ja9ylYqRo8=" 578 }, 579 { 580 "pname": "System.Buffers", 581 + "version": "4.3.0", 582 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 583 }, 584 { 585 "pname": "System.Collections", 586 "version": "4.0.11", 587 + "hash": "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=" 588 }, 589 { 590 "pname": "System.Collections", 591 "version": "4.3.0", 592 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 593 }, 594 { 595 "pname": "System.Collections.Concurrent", 596 "version": "4.0.12", 597 + "hash": "sha256-zIEM7AB4SyE9u6G8+o+gCLLwkgi6+3rHQVPdn/dEwB8=" 598 + }, 599 + { 600 + "pname": "System.Collections.Concurrent", 601 + "version": "4.3.0", 602 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 603 }, 604 { 605 "pname": "System.Collections.Immutable", 606 "version": "1.5.0", 607 + "hash": "sha256-BliqYlL9ntbMXo5d7NUrKXwYN+PqdyqDIS5bp4qVr7Q=" 608 }, 609 { 610 "pname": "System.Collections.Immutable", 611 "version": "1.6.0", 612 + "hash": "sha256-gnu+8nN48GAd4GRgeB5cAQmW7VnCubL/8h7zO377fd0=" 613 }, 614 { 615 "pname": "System.Collections.Immutable", 616 "version": "5.0.0", 617 + "hash": "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8=" 618 }, 619 { 620 "pname": "System.ComponentModel.Annotations", 621 "version": "4.5.0", 622 + "hash": "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso=" 623 }, 624 { 625 "pname": "System.ComponentModel.Composition", 626 "version": "6.0.0", 627 + "hash": "sha256-7JyYbqWl1NHTNMJW12g6TtYfkemI52nOnX7OHWvp7ps=" 628 }, 629 { 630 "pname": "System.Composition", 631 "version": "6.0.0", 632 + "hash": "sha256-H5TnnxOwihI0VyRuykbOWuKFSCWNN+MUEYyloa328Nw=" 633 }, 634 { 635 "pname": "System.Composition.AttributedModel", 636 "version": "6.0.0", 637 + "hash": "sha256-03DR8ecEHSKfgzwuTuxtsRW0Gb7aQtDS4LAYChZdGdc=" 638 }, 639 { 640 "pname": "System.Composition.Convention", 641 "version": "6.0.0", 642 + "hash": "sha256-a3DZS8CT2kV8dVpGxHKoP5wHVKsT+kiPJixckpYfdQo=" 643 }, 644 { 645 "pname": "System.Composition.Hosting", 646 "version": "6.0.0", 647 + "hash": "sha256-fpoh6WBNmaHEHszwlBR/TNjd85lwesfM7ZkQhqYtLy4=" 648 }, 649 { 650 "pname": "System.Composition.Runtime", 651 "version": "6.0.0", 652 + "hash": "sha256-nGZvg2xYhhazAjOjhWqltBue+hROKP0IOiFGP8yMBW8=" 653 }, 654 { 655 "pname": "System.Composition.TypedParts", 656 "version": "6.0.0", 657 + "hash": "sha256-4uAETfmL1CvGjHajzWowsEmJgTKnuFC8u9lbYPzAN3k=" 658 + }, 659 + { 660 + "pname": "System.Console", 661 + "version": "4.0.0", 662 + "hash": "sha256-jtZfT/TpJtLisV/y5Mk3IfCpE79zwhBYXtyGP9jC3Xo=" 663 + }, 664 + { 665 + "pname": "System.Console", 666 + "version": "4.3.0", 667 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 668 }, 669 { 670 "pname": "System.Diagnostics.Debug", 671 "version": "4.0.11", 672 + "hash": "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=" 673 }, 674 { 675 "pname": "System.Diagnostics.Debug", 676 "version": "4.3.0", 677 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 678 + }, 679 + { 680 + "pname": "System.Diagnostics.DiagnosticSource", 681 + "version": "4.0.0", 682 + "hash": "sha256-dYh9UoFesuGcHY+ewsI+z2WnNy+bwHPsHQ3t85cbzNg=" 683 + }, 684 + { 685 + "pname": "System.Diagnostics.DiagnosticSource", 686 + "version": "4.3.0", 687 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 688 }, 689 { 690 "pname": "System.Diagnostics.Process", 691 "version": "4.1.0", 692 + "hash": "sha256-OgW6ogQ+oYADYS0PHmwXdhrOKQJpqXlwzSvmfjTLNBg=" 693 }, 694 { 695 "pname": "System.Diagnostics.Tools", 696 "version": "4.0.1", 697 + "hash": "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U=" 698 + }, 699 + { 700 + "pname": "System.Diagnostics.Tools", 701 + "version": "4.3.0", 702 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 703 }, 704 { 705 "pname": "System.Diagnostics.Tracing", 706 "version": "4.1.0", 707 + "hash": "sha256-JA0jJcLbU3zh52ub3zweob2EVHvxOqiC6SCYHrY5WbQ=" 708 }, 709 { 710 "pname": "System.Diagnostics.Tracing", 711 "version": "4.3.0", 712 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 713 }, 714 { 715 "pname": "System.Drawing.Common", 716 "version": "4.5.0", 717 + "hash": "sha256-DLYGJraIfSj0Zmpi2H5Am2AsZ+kP5UVGdjakqj9Q2E4=" 718 }, 719 { 720 "pname": "System.Dynamic.Runtime", 721 "version": "4.0.11", 722 + "hash": "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=" 723 }, 724 { 725 "pname": "System.Dynamic.Runtime", 726 "version": "4.3.0", 727 + "hash": "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=" 728 }, 729 { 730 "pname": "System.Globalization", 731 "version": "4.0.11", 732 + "hash": "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=" 733 }, 734 { 735 "pname": "System.Globalization", 736 "version": "4.3.0", 737 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 738 + }, 739 + { 740 + "pname": "System.Globalization.Calendars", 741 + "version": "4.0.1", 742 + "hash": "sha256-EJN3LbN+b0O9Dr2eg7kfThCYpne0iJ/H/GIyUTNVYC8=" 743 + }, 744 + { 745 + "pname": "System.Globalization.Calendars", 746 + "version": "4.3.0", 747 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 748 + }, 749 + { 750 + "pname": "System.Globalization.Extensions", 751 + "version": "4.0.1", 752 + "hash": "sha256-zLtkPryJwqTGcJqMC6zoMMvMrT+aAL5GoumjmMtqUEI=" 753 + }, 754 + { 755 + "pname": "System.Globalization.Extensions", 756 + "version": "4.3.0", 757 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 758 }, 759 { 760 "pname": "System.IO", 761 "version": "4.1.0", 762 + "hash": "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=" 763 }, 764 { 765 "pname": "System.IO", 766 "version": "4.3.0", 767 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 768 }, 769 { 770 "pname": "System.IO.Compression", 771 "version": "4.3.0", 772 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 773 + }, 774 + { 775 + "pname": "System.IO.Compression.ZipFile", 776 + "version": "4.0.1", 777 + "hash": "sha256-An0Twb9JODl/nuVm6MR0kJ3aj4WxGpI/1/vVp5b94kA=" 778 + }, 779 + { 780 + "pname": "System.IO.Compression.ZipFile", 781 + "version": "4.3.0", 782 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 783 }, 784 { 785 "pname": "System.IO.FileSystem", 786 "version": "4.0.1", 787 + "hash": "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=" 788 }, 789 { 790 "pname": "System.IO.FileSystem", 791 "version": "4.3.0", 792 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 793 }, 794 { 795 "pname": "System.IO.FileSystem.Primitives", 796 "version": "4.0.1", 797 + "hash": "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg=" 798 }, 799 { 800 "pname": "System.IO.FileSystem.Primitives", 801 "version": "4.3.0", 802 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 803 }, 804 { 805 "pname": "System.Linq", 806 "version": "4.1.0", 807 + "hash": "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=" 808 }, 809 { 810 "pname": "System.Linq", 811 "version": "4.3.0", 812 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 813 }, 814 { 815 "pname": "System.Linq.Expressions", 816 "version": "4.1.0", 817 + "hash": "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=" 818 }, 819 { 820 "pname": "System.Linq.Expressions", 821 "version": "4.3.0", 822 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 823 }, 824 { 825 "pname": "System.Memory", 826 "version": "4.5.3", 827 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 828 }, 829 { 830 + "pname": "System.Net.Http", 831 + "version": "4.1.0", 832 + "hash": "sha256-y6PnGuObJvOkhl9CXNFJQcV3SXuEz5yRLOCxGGTEucQ=" 833 }, 834 { 835 + "pname": "System.Net.Http", 836 + "version": "4.3.0", 837 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 838 + }, 839 + { 840 + "pname": "System.Net.NameResolution", 841 + "version": "4.3.0", 842 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 843 + }, 844 + { 845 + "pname": "System.Net.Primitives", 846 + "version": "4.0.11", 847 + "hash": "sha256-2YSijNhCdw/ZU2yfH7vE+ReA8pgxRCXPnWr+ab36v4M=" 848 + }, 849 + { 850 + "pname": "System.Net.Primitives", 851 + "version": "4.3.0", 852 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 853 + }, 854 + { 855 + "pname": "System.Net.Sockets", 856 + "version": "4.1.0", 857 + "hash": "sha256-muK7oXIX7ykqhXskuUt0KX6Hzg5VogJhUS0JiOB2BY0=" 858 + }, 859 + { 860 + "pname": "System.Net.Sockets", 861 + "version": "4.3.0", 862 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 863 }, 864 { 865 "pname": "System.Numerics.Vectors", 866 "version": "4.5.0", 867 + "hash": "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8=" 868 }, 869 { 870 "pname": "System.ObjectModel", 871 "version": "4.0.12", 872 + "hash": "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=" 873 }, 874 { 875 "pname": "System.ObjectModel", 876 "version": "4.3.0", 877 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 878 }, 879 { 880 "pname": "System.Private.Uri", 881 "version": "4.3.0", 882 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 883 }, 884 { 885 "pname": "System.Reactive", 886 "version": "5.0.0", 887 + "hash": "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE=" 888 }, 889 { 890 "pname": "System.Reflection", 891 "version": "4.1.0", 892 + "hash": "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=" 893 }, 894 { 895 "pname": "System.Reflection", 896 "version": "4.3.0", 897 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 898 }, 899 { 900 "pname": "System.Reflection.Emit", 901 "version": "4.0.1", 902 + "hash": "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=" 903 }, 904 { 905 "pname": "System.Reflection.Emit", 906 "version": "4.3.0", 907 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 908 }, 909 { 910 "pname": "System.Reflection.Emit", 911 "version": "4.7.0", 912 + "hash": "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg=" 913 }, 914 { 915 "pname": "System.Reflection.Emit.ILGeneration", 916 "version": "4.0.1", 917 + "hash": "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=" 918 }, 919 { 920 "pname": "System.Reflection.Emit.ILGeneration", 921 "version": "4.3.0", 922 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 923 }, 924 { 925 "pname": "System.Reflection.Emit.Lightweight", 926 "version": "4.0.1", 927 + "hash": "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=" 928 }, 929 { 930 "pname": "System.Reflection.Emit.Lightweight", 931 "version": "4.3.0", 932 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 933 }, 934 { 935 "pname": "System.Reflection.Extensions", 936 "version": "4.0.1", 937 + "hash": "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=" 938 }, 939 { 940 "pname": "System.Reflection.Extensions", 941 "version": "4.3.0", 942 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 943 }, 944 { 945 "pname": "System.Reflection.Metadata", 946 "version": "1.6.0", 947 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 948 }, 949 { 950 "pname": "System.Reflection.Metadata", 951 "version": "5.0.0", 952 + "hash": "sha256-Wo+MiqhcP9dQ6NuFGrQTw6hpbJORFwp+TBNTq2yhGp8=" 953 }, 954 { 955 "pname": "System.Reflection.Primitives", 956 "version": "4.0.1", 957 + "hash": "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=" 958 }, 959 { 960 "pname": "System.Reflection.Primitives", 961 "version": "4.3.0", 962 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 963 }, 964 { 965 "pname": "System.Reflection.TypeExtensions", 966 "version": "4.1.0", 967 + "hash": "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=" 968 }, 969 { 970 "pname": "System.Reflection.TypeExtensions", 971 "version": "4.3.0", 972 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 973 }, 974 { 975 "pname": "System.Reflection.TypeExtensions", 976 "version": "4.7.0", 977 + "hash": "sha256-GEtCGXwtOnkYejSV+Tfl+DqyGq5jTUaVyL9eMupMHBM=" 978 }, 979 { 980 "pname": "System.Resources.ResourceManager", 981 "version": "4.0.1", 982 + "hash": "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=" 983 }, 984 { 985 "pname": "System.Resources.ResourceManager", 986 "version": "4.3.0", 987 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 988 }, 989 { 990 "pname": "System.Runtime", 991 "version": "4.1.0", 992 + "hash": "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=" 993 }, 994 { 995 "pname": "System.Runtime", 996 "version": "4.3.0", 997 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 998 }, 999 { 1000 "pname": "System.Runtime", 1001 "version": "4.3.1", 1002 + "hash": "sha256-R9T68AzS1PJJ7v6ARz9vo88pKL1dWqLOANg4pkQjkA0=" 1003 }, 1004 { 1005 "pname": "System.Runtime.CompilerServices.Unsafe", 1006 "version": "4.5.2", 1007 + "hash": "sha256-8eUXXGWO2LL7uATMZye2iCpQOETn2jCcjUhG6coR5O8=" 1008 }, 1009 { 1010 "pname": "System.Runtime.CompilerServices.Unsafe", 1011 "version": "4.6.0", 1012 + "hash": "sha256-FTjQeMuvqnKxpoVsVh/OlQ21NMaZiFtOdv7VdZ+Iv3Y=" 1013 }, 1014 { 1015 "pname": "System.Runtime.Extensions", 1016 "version": "4.1.0", 1017 + "hash": "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=" 1018 }, 1019 { 1020 "pname": "System.Runtime.Extensions", 1021 "version": "4.3.0", 1022 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 1023 }, 1024 { 1025 "pname": "System.Runtime.Extensions", 1026 "version": "4.3.1", 1027 + "hash": "sha256-xll/AF6sF1soQ15prAPIVHSH69CiL4E9OHVDHyrm868=" 1028 }, 1029 { 1030 "pname": "System.Runtime.Handles", 1031 "version": "4.0.1", 1032 + "hash": "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w=" 1033 }, 1034 { 1035 "pname": "System.Runtime.Handles", 1036 "version": "4.3.0", 1037 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 1038 }, 1039 { 1040 "pname": "System.Runtime.InteropServices", 1041 "version": "4.1.0", 1042 + "hash": "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY=" 1043 }, 1044 { 1045 "pname": "System.Runtime.InteropServices", 1046 "version": "4.3.0", 1047 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 1048 + }, 1049 + { 1050 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 1051 + "version": "4.0.0", 1052 + "hash": "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4=" 1053 }, 1054 { 1055 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 1056 "version": "4.3.0", 1057 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 1058 }, 1059 { 1060 "pname": "System.Runtime.Numerics", 1061 "version": "4.0.1", 1062 + "hash": "sha256-1pJt5ZGxLPTX1mjOi8qZPXyyOMkYV0NstoUCv91HYPg=" 1063 + }, 1064 + { 1065 + "pname": "System.Runtime.Numerics", 1066 + "version": "4.3.0", 1067 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 1068 }, 1069 { 1070 "pname": "System.Runtime.Serialization.Primitives", 1071 "version": "4.1.1", 1072 + "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" 1073 }, 1074 { 1075 "pname": "System.Security.AccessControl", 1076 "version": "5.0.0", 1077 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 1078 + }, 1079 + { 1080 + "pname": "System.Security.Claims", 1081 + "version": "4.3.0", 1082 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 1083 }, 1084 { 1085 "pname": "System.Security.Cryptography.Algorithms", 1086 "version": "4.2.0", 1087 + "hash": "sha256-BelNIpEyToEp/VYKnje/q1P7KNEpQNtOzGPU18pLGpE=" 1088 + }, 1089 + { 1090 + "pname": "System.Security.Cryptography.Algorithms", 1091 + "version": "4.3.0", 1092 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 1093 + }, 1094 + { 1095 + "pname": "System.Security.Cryptography.Cng", 1096 + "version": "4.2.0", 1097 + "hash": "sha256-7F+m3HnmBsgE4xWF8FeCGlaEgQM3drqA6HEaQr6MEoU=" 1098 + }, 1099 + { 1100 + "pname": "System.Security.Cryptography.Cng", 1101 + "version": "4.3.0", 1102 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 1103 + }, 1104 + { 1105 + "pname": "System.Security.Cryptography.Csp", 1106 + "version": "4.0.0", 1107 + "hash": "sha256-WHyR6vVK3zaT4De7jgQFUar1P5fiX9ECwiVkJDFFm7M=" 1108 + }, 1109 + { 1110 + "pname": "System.Security.Cryptography.Csp", 1111 + "version": "4.3.0", 1112 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 1113 }, 1114 { 1115 "pname": "System.Security.Cryptography.Encoding", 1116 "version": "4.0.0", 1117 + "hash": "sha256-ZO7ha39J5uHkIF2RoEKv/bW/bLbVvYMO4+rWyYsKHik=" 1118 + }, 1119 + { 1120 + "pname": "System.Security.Cryptography.Encoding", 1121 + "version": "4.3.0", 1122 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 1123 + }, 1124 + { 1125 + "pname": "System.Security.Cryptography.OpenSsl", 1126 + "version": "4.0.0", 1127 + "hash": "sha256-mLijAozynzjiOMyh2P5BHcfVq3Ovd0T/phG08SIbXZs=" 1128 + }, 1129 + { 1130 + "pname": "System.Security.Cryptography.OpenSsl", 1131 + "version": "4.3.0", 1132 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 1133 }, 1134 { 1135 "pname": "System.Security.Cryptography.Primitives", 1136 "version": "4.0.0", 1137 + "hash": "sha256-sEdPftfTxQd/8DpdpqUZC2XWC0SjVCPqAkEleLl17EQ=" 1138 + }, 1139 + { 1140 + "pname": "System.Security.Cryptography.Primitives", 1141 + "version": "4.3.0", 1142 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 1143 + }, 1144 + { 1145 + "pname": "System.Security.Cryptography.X509Certificates", 1146 + "version": "4.1.0", 1147 + "hash": "sha256-sBUUhJP+yYDXvcjNMKqNpn8yzGUpVABwK9vVUvYKjzI=" 1148 + }, 1149 + { 1150 + "pname": "System.Security.Cryptography.X509Certificates", 1151 + "version": "4.3.0", 1152 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 1153 + }, 1154 + { 1155 + "pname": "System.Security.Principal", 1156 + "version": "4.3.0", 1157 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 1158 + }, 1159 + { 1160 + "pname": "System.Security.Principal.Windows", 1161 + "version": "4.3.0", 1162 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 1163 }, 1164 { 1165 "pname": "System.Security.Principal.Windows", 1166 "version": "4.7.0", 1167 + "hash": "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg=" 1168 }, 1169 { 1170 "pname": "System.Security.Principal.Windows", 1171 "version": "5.0.0", 1172 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 1173 }, 1174 { 1175 "pname": "System.Text.Encoding", 1176 "version": "4.0.11", 1177 + "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" 1178 }, 1179 { 1180 "pname": "System.Text.Encoding", 1181 "version": "4.3.0", 1182 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 1183 }, 1184 { 1185 "pname": "System.Text.Encoding.CodePages", 1186 "version": "4.5.1", 1187 + "hash": "sha256-PIhkv59IXjyiuefdhKxS9hQfEwO9YWRuNudpo53HQfw=" 1188 }, 1189 { 1190 "pname": "System.Text.Encoding.Extensions", 1191 "version": "4.3.0", 1192 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 1193 }, 1194 { 1195 "pname": "System.Text.RegularExpressions", 1196 "version": "4.1.0", 1197 + "hash": "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c=" 1198 }, 1199 { 1200 "pname": "System.Text.RegularExpressions", 1201 "version": "4.3.0", 1202 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 1203 }, 1204 { 1205 "pname": "System.Threading", 1206 "version": "4.0.11", 1207 + "hash": "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=" 1208 }, 1209 { 1210 "pname": "System.Threading", 1211 "version": "4.3.0", 1212 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 1213 }, 1214 { 1215 "pname": "System.Threading.Tasks", 1216 "version": "4.0.11", 1217 + "hash": "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=" 1218 }, 1219 { 1220 "pname": "System.Threading.Tasks", 1221 "version": "4.3.0", 1222 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 1223 }, 1224 { 1225 "pname": "System.Threading.Tasks.Dataflow", 1226 "version": "5.0.0", 1227 + "hash": "sha256-Hi7MpNVXe5lZmQkty3BqIC2kyknskFLNdkkWy1+NDgk=" 1228 }, 1229 { 1230 "pname": "System.Threading.Tasks.Extensions", 1231 "version": "4.0.0", 1232 + "hash": "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE=" 1233 }, 1234 { 1235 "pname": "System.Threading.Tasks.Extensions", 1236 "version": "4.3.0", 1237 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 1238 }, 1239 { 1240 "pname": "System.Threading.Tasks.Extensions", 1241 "version": "4.5.3", 1242 + "hash": "sha256-8TglbC6KBHlDeSfgr6d5dGn7wu8td4XERl2JUyo0+Tw=" 1243 }, 1244 { 1245 "pname": "System.Threading.Thread", 1246 "version": "4.0.0", 1247 + "hash": "sha256-7EtSJuKqcW107FYA5Ko9NFXEWUPIzNDtlfKaQV2pvb8=" 1248 }, 1249 { 1250 "pname": "System.Threading.ThreadPool", 1251 "version": "4.0.10", 1252 + "hash": "sha256-/fowWjM/0ZZFC1Rwu0i5N71iRxV2JOd3jQV2Jn0wuTk=" 1253 + }, 1254 + { 1255 + "pname": "System.Threading.ThreadPool", 1256 + "version": "4.3.0", 1257 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 1258 + }, 1259 + { 1260 + "pname": "System.Threading.Timer", 1261 + "version": "4.0.1", 1262 + "hash": "sha256-5lU6zt1O9JDSPr2KAHw4BYgysHnt0yyZrMNa5IIjxZY=" 1263 + }, 1264 + { 1265 + "pname": "System.Threading.Timer", 1266 + "version": "4.3.0", 1267 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 1268 }, 1269 { 1270 "pname": "System.ValueTuple", 1271 "version": "4.5.0", 1272 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 1273 }, 1274 { 1275 "pname": "System.Xml.ReaderWriter", 1276 "version": "4.0.11", 1277 + "hash": "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA=" 1278 + }, 1279 + { 1280 + "pname": "System.Xml.ReaderWriter", 1281 + "version": "4.3.0", 1282 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 1283 }, 1284 { 1285 "pname": "System.Xml.ReaderWriter", 1286 "version": "4.3.1", 1287 + "hash": "sha256-fjIJK5jpz99gON2TNpTq2jw3WVtoCFLO9rUvkE/byZU=" 1288 }, 1289 { 1290 "pname": "System.Xml.XDocument", 1291 "version": "4.0.11", 1292 + "hash": "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg=" 1293 + }, 1294 + { 1295 + "pname": "System.Xml.XDocument", 1296 + "version": "4.3.0", 1297 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 1298 }, 1299 { 1300 "pname": "Tmds.DBus", 1301 "version": "0.9.0", 1302 + "hash": "sha256-w332WVsJrdAOnlSUtgvatSTtnoC81C3LG6J2ip42fW8=" 1303 } 1304 ]
+64
pkgs/applications/misc/avalonia-ilspy/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj b/ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj 2 + index 397e0e5..dfa385c 100644 3 + --- a/ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj 4 + +++ b/ICSharpCode.Decompiler.PdbProvider.Cecil/ICSharpCode.Decompiler.PdbProvider.Cecil.csproj 5 + @@ -1,7 +1,7 @@ 6 + <Project Sdk="Microsoft.NET.Sdk"> 7 + 8 + <PropertyGroup> 9 + - <TargetFramework>netstandard2.0</TargetFramework> 10 + + <TargetFramework>net8.0</TargetFramework> 11 + <LangVersion>7.2</LangVersion> 12 + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 13 + </PropertyGroup> 14 + diff --git a/ILSpy.Core/ILSpy.Core.csproj b/ILSpy.Core/ILSpy.Core.csproj 15 + index cd6d5e2..d725817 100644 16 + --- a/ILSpy.Core/ILSpy.Core.csproj 17 + +++ b/ILSpy.Core/ILSpy.Core.csproj 18 + @@ -2,7 +2,7 @@ 19 + <Project Sdk="Microsoft.NET.Sdk"> 20 + 21 + <PropertyGroup> 22 + - <TargetFramework>netstandard2.0</TargetFramework> 23 + + <TargetFramework>net8.0</TargetFramework> 24 + <GenerateAssemblyInfo>False</GenerateAssemblyInfo> 25 + <EnableDefaultItems>false</EnableDefaultItems> 26 + <SignAssembly>True</SignAssembly> 27 + diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj 28 + index 4deb56f..b9813ba 100644 29 + --- a/ILSpy/ILSpy.csproj 30 + +++ b/ILSpy/ILSpy.csproj 31 + @@ -1,7 +1,7 @@ 32 + <Project Sdk="Microsoft.NET.Sdk"> 33 + 34 + <PropertyGroup> 35 + - <TargetFramework>net6.0</TargetFramework> 36 + + <TargetFramework>net8.0</TargetFramework> 37 + <OutputType>WinExe</OutputType> 38 + 39 + <TieredCompilation>true</TieredCompilation> 40 + diff --git a/SharpTreeView/SharpTreeView.csproj b/SharpTreeView/SharpTreeView.csproj 41 + index d6f46c5..4183ffd 100644 42 + --- a/SharpTreeView/SharpTreeView.csproj 43 + +++ b/SharpTreeView/SharpTreeView.csproj 44 + @@ -1,6 +1,6 @@ 45 + <Project Sdk="Microsoft.NET.Sdk"> 46 + <PropertyGroup> 47 + - <TargetFramework>netstandard2.0</TargetFramework> 48 + + <TargetFramework>net8.0</TargetFramework> 49 + <GenerateAssemblyInfo>False</GenerateAssemblyInfo> 50 + <EnableDefaultItems>false</EnableDefaultItems> 51 + <SignAssembly>True</SignAssembly> 52 + diff --git a/TestPlugin/TestPlugin.csproj b/TestPlugin/TestPlugin.csproj 53 + index 453a3ef..806f375 100644 54 + --- a/TestPlugin/TestPlugin.csproj 55 + +++ b/TestPlugin/TestPlugin.csproj 56 + @@ -2,7 +2,7 @@ 57 + <Project Sdk="Microsoft.NET.Sdk"> 58 + 59 + <PropertyGroup> 60 + - <TargetFramework>netstandard2.0</TargetFramework> 61 + + <TargetFramework>net8.0</TargetFramework> 62 + <AssemblyName>Test.Plugin</AssemblyName> 63 + 64 + <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
+9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1236 "spdx": "MPL-2.0", 1237 "vendorHash": "sha256-YdWs2orKhbwAZSQYC73t4e/vvVxk8LrBPG9ZC38VcZE=" 1238 }, 1239 "tailscale": { 1240 "hash": "sha256-b2ZzXvlzlE+zv3Ufu4M5mcuLhyDkBbMznyM7NbiXAQs=", 1241 "homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
··· 1236 "spdx": "MPL-2.0", 1237 "vendorHash": "sha256-YdWs2orKhbwAZSQYC73t4e/vvVxk8LrBPG9ZC38VcZE=" 1238 }, 1239 + "sysdig": { 1240 + "hash": "sha256-TvZ7x4dWOERkqTWtjmbILdcWy12kqsV+OzLJ4siQ7mA=", 1241 + "homepage": "https://registry.terraform.io/providers/sysdiglabs/sysdig", 1242 + "owner": "sysdiglabs", 1243 + "repo": "terraform-provider-sysdig", 1244 + "rev": "v1.42.0", 1245 + "spdx": "MPL-2.0", 1246 + "vendorHash": "sha256-nfVS4EXpPoriXyPpBK8k5OU9MTWxxrvTIwsF2uyQE/0=" 1247 + }, 1248 "tailscale": { 1249 "hash": "sha256-b2ZzXvlzlE+zv3Ufu4M5mcuLhyDkBbMznyM7NbiXAQs=", 1250 "homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
+6 -5
pkgs/applications/science/astronomy/stellarium/default.nix
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "stellarium"; 31 - version = "24.3"; 32 33 src = fetchFromGitHub { 34 owner = "Stellarium"; 35 repo = "stellarium"; 36 rev = "v${finalAttrs.version}"; 37 - hash = "sha256-shDp2tCOynMiEuTSx4TEK8V9h3EsMDq+kkZFhldrinM="; 38 }; 39 40 patches = [ 41 - # Compatibility with INDI 2.0 series from https://github.com/Stellarium/stellarium/pull/3269 42 (fetchpatch { 43 - url = "https://github.com/Stellarium/stellarium/commit/31fd7bebf33fa710ce53ac8375238a24758312bc.patch"; 44 - hash = "sha256-eJEqqitZgtV6noeCi8pDBYMVTFIVWXZU1fiEvoilX8o="; 45 }) 46 ]; 47 ··· 123 license = lib.licenses.gpl2Plus; 124 platforms = lib.platforms.unix; 125 maintainers = with lib.maintainers; [ kilianar ]; 126 }; 127 })
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "stellarium"; 31 + version = "24.4"; 32 33 src = fetchFromGitHub { 34 owner = "Stellarium"; 35 repo = "stellarium"; 36 rev = "v${finalAttrs.version}"; 37 + hash = "sha256-/xF9hXlPKhmpvpx9t1IgSqpvvqrGnd0xaf0QMvu+9IA="; 38 }; 39 40 patches = [ 41 + # Fix indi headers from https://github.com/Stellarium/stellarium/pull/4025 42 (fetchpatch { 43 + url = "https://github.com/Stellarium/stellarium/commit/9669d64fb4104830412c6c6c2b45811075a92300.patch"; 44 + hash = "sha256-CXeghxxRIV7Filveg+3pNAWymUpUuGnylvt4e8THJ8A="; 45 }) 46 ]; 47 ··· 123 license = lib.licenses.gpl2Plus; 124 platforms = lib.platforms.unix; 125 maintainers = with lib.maintainers; [ kilianar ]; 126 + broken = stdenv.hostPlatform.isDarwin; 127 }; 128 })
+21 -18
pkgs/applications/science/electronics/fritzing/default.nix
··· 21 let 22 # SHA256 of the fritzing-parts HEAD on the master branch, 23 # which contains the latest stable parts definitions 24 - partsSha = "015626e6cafb1fc7831c2e536d97ca2275a83d32"; 25 26 parts = fetchFromGitHub { 27 owner = "fritzing"; 28 repo = "fritzing-parts"; 29 rev = partsSha; 30 - hash = "sha256-5jw56cqxpT/8bf1q551WG53J6Lw5pH0HEtRUoNNMc+A="; 31 }; 32 33 # Header-only library 34 svgpp = fetchFromGitHub { 35 owner = "svgpp"; 36 repo = "svgpp"; 37 - rev = "v1.3.0"; 38 - hash = "sha256-kJEVnMYnDF7bThDB60bGXalYgpn9c5/JCZkRSK5GoE4="; 39 }; 40 in 41 42 stdenv.mkDerivation { 43 pname = "fritzing"; 44 - version = "1.0.2"; 45 46 src = fetchFromGitHub { 47 owner = "fritzing"; 48 repo = "fritzing-app"; 49 - rev = "dbdbe34c843677df721c7b3fc3e32c0f737e7e95"; 50 - hash = "sha256-Xi5sPU2RGkqh7T+EOvwxJJKKYDhJfccyEZ8LBBTb2s4="; 51 }; 52 53 nativeBuildInputs = [ ··· 56 qttools 57 wrapQtAppsHook 58 ]; 59 buildInputs = 60 [ 61 qtbase ··· 90 cp -a ${parts}/* parts/ 91 ''; 92 93 - env.NIX_CFLAGS_COMPILE = lib.concatStringsSep " " [ 94 - "-I${lib.getDev quazip}/include/QuaZip-Qt${lib.versions.major qtbase.version}-${quazip.version}" 95 - "-I${svgpp}/include" 96 - "-I${clipper}/include/polyclipping" 97 - ]; 98 - env.NIX_LDFLAGS = "-lquazip1-qt${lib.versions.major qtbase.version}"; 99 100 qmakeFlags = [ 101 "phoenix.pro" ··· 116 -folder "$out/share/fritzing" 117 ''; 118 119 - meta = with lib; { 120 description = "Open source prototyping tool for Arduino-based projects"; 121 - homepage = "https://fritzing.org/"; 122 - license = with licenses; [ 123 gpl3 124 cc-by-sa-30 125 ]; 126 - maintainers = with maintainers; [ 127 robberer 128 muscaln 129 ]; 130 - platforms = platforms.unix; 131 mainProgram = "Fritzing"; 132 }; 133 }
··· 21 let 22 # SHA256 of the fritzing-parts HEAD on the master branch, 23 # which contains the latest stable parts definitions 24 + partsSha = "76235099ed556e52003de63522fdd74e61d53a36"; 25 26 parts = fetchFromGitHub { 27 owner = "fritzing"; 28 repo = "fritzing-parts"; 29 rev = partsSha; 30 + hash = "sha256-1QVcPbRBOSYnNFsp7B2OyPXYuPaINRv9yEqGZFd662Y="; 31 }; 32 33 # Header-only library 34 svgpp = fetchFromGitHub { 35 owner = "svgpp"; 36 repo = "svgpp"; 37 + tag = "v1.3.1"; 38 + hash = "sha256-nW0ns06XWfUi22nOKZzFKgAOHVIlQqChW8HxUDOFMh4="; 39 }; 40 in 41 42 stdenv.mkDerivation { 43 pname = "fritzing"; 44 + version = "1.0.4"; 45 46 src = fetchFromGitHub { 47 owner = "fritzing"; 48 repo = "fritzing-app"; 49 + rev = "a8c6ef7cf66f7a42b9b233d6137f1b70a9573a25"; 50 + hash = "sha256-a/bWAUeDPj3g8BECOlXuqyCi4JgGLLs1605m380Drt0="; 51 }; 52 53 nativeBuildInputs = [ ··· 56 qttools 57 wrapQtAppsHook 58 ]; 59 + 60 buildInputs = 61 [ 62 qtbase ··· 91 cp -a ${parts}/* parts/ 92 ''; 93 94 + env = { 95 + NIX_CFLAGS_COMPILE = lib.concatStringsSep " " [ 96 + "-I${lib.getDev quazip}/include/QuaZip-Qt${lib.versions.major qtbase.version}-${quazip.version}" 97 + "-I${svgpp}/include" 98 + "-I${clipper}/include/polyclipping" 99 + ]; 100 + NIX_LDFLAGS = "-lquazip1-qt${lib.versions.major qtbase.version}"; 101 + }; 102 103 qmakeFlags = [ 104 "phoenix.pro" ··· 119 -folder "$out/share/fritzing" 120 ''; 121 122 + meta = { 123 description = "Open source prototyping tool for Arduino-based projects"; 124 + homepage = "https://fritzing.org"; 125 + license = with lib.licenses; [ 126 gpl3 127 cc-by-sa-30 128 ]; 129 + maintainers = with lib.maintainers; [ 130 robberer 131 muscaln 132 ]; 133 + platforms = lib.platforms.unix; 134 mainProgram = "Fritzing"; 135 }; 136 }
+3 -3
pkgs/applications/version-management/git-absorb/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "git-absorb"; 11 - version = "0.6.15"; 12 13 src = fetchFromGitHub { 14 owner = "tummychow"; 15 repo = "git-absorb"; 16 tag = version; 17 - hash = "sha256-7Y/gEym+29lTwJ7FbuvOqzbiMSzrY9f5IPhtvIJUKbU="; 18 }; 19 20 nativeBuildInputs = [ installShellFiles ]; 21 22 - cargoHash = "sha256-Y/0In33y4mVTaE9yoBZ/3tRWcsSKgGjTCSHdjScNEj0="; 23 24 postInstall = 25 ''
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "git-absorb"; 11 + version = "0.6.16"; 12 13 src = fetchFromGitHub { 14 owner = "tummychow"; 15 repo = "git-absorb"; 16 tag = version; 17 + hash = "sha256-5ZCCrq/mc9FAjl7AMbuQyRak5sL1dG3qWnrdNzUu4Ss="; 18 }; 19 20 nativeBuildInputs = [ installShellFiles ]; 21 22 + cargoHash = "sha256-CzZgAjAIJryhFEJve3E62rg4QGRPSvBMuFZJzHGf09w="; 23 24 postInstall = 25 ''
+430 -460
pkgs/by-name/al/alttpr-opentracker/deps.json
··· 1 [ 2 { 3 "pname": "Autofac", 4 - "version": "6.3.0", 5 - "sha256": "0zg0lsqzb8hh7l97mfd2z3fxdab86sbmxkaprzi41v0hs1x3jd9b" 6 }, 7 { 8 "pname": "Avalonia", 9 - "version": "0.10.12", 10 - "sha256": "1hb6v8sm7gd8aswdv0slnk8cvvxs5ac82knc3pzvxj0js2n4lnv2" 11 }, 12 { 13 "pname": "Avalonia.Angle.Windows.Natives", 14 "version": "2.1.0.2020091801", 15 - "sha256": "04jm83cz7vkhhr6n2c9hya2k8i2462xbf6np4bidk55as0jdq43a" 16 }, 17 { 18 "pname": "Avalonia.Controls.DataGrid", 19 - "version": "0.10.12", 20 - "sha256": "1r8qi0kgd9rqbacnriy5sa684d12vxi45a6n2a4w7ydxr97zv5nm" 21 }, 22 { 23 "pname": "Avalonia.Desktop", 24 - "version": "0.10.12", 25 - "sha256": "17ng7vvmynnmll7fb8zkjlhcn0ksg7p4v6kw207yq72acgvyn96g" 26 }, 27 { 28 "pname": "Avalonia.Diagnostics", 29 - "version": "0.10.12", 30 - "sha256": "17skzs05iv5ljgnqm36zrbhrh3x20xf5hgni543i02zffj2015ki" 31 }, 32 { 33 "pname": "Avalonia.FreeDesktop", 34 - "version": "0.10.12", 35 - "sha256": "00920pdiv8wlpym0s80nz8lfmw515ikrr5f2a6sr4kmjwfd9cffj" 36 }, 37 { 38 "pname": "Avalonia.Markup.Xaml.Loader", 39 - "version": "0.10.12", 40 - "sha256": "18glwqn4a8p3rz5zsp1xyrm5xwv853056nykf7mdcv1lglh74fsm" 41 }, 42 { 43 "pname": "Avalonia.Native", 44 - "version": "0.10.12", 45 - "sha256": "1j6gxg0n55923rbw2p7z6yh27i81xrzpqarb268d3hd6hgjycwc1" 46 }, 47 { 48 "pname": "Avalonia.ReactiveUI", 49 - "version": "0.10.12", 50 - "sha256": "04ga7f8bmz3bqp4dsc4fzrphfq61zf62hlz4nbazf1igx0jzdygy" 51 }, 52 { 53 "pname": "Avalonia.Remote.Protocol", 54 - "version": "0.10.12", 55 - "sha256": "0ghrb8yf4qahwlpa2appk7q0m0n01q0s65nx1xj1plpi4jr6vvw2" 56 }, 57 { 58 "pname": "Avalonia.Skia", 59 - "version": "0.10.12", 60 - "sha256": "1qj0sw4780za3p6hbwvx1p3b6px3s5vp3ml3vvyak1bajvifz969" 61 }, 62 { 63 "pname": "Avalonia.Win32", 64 - "version": "0.10.12", 65 - "sha256": "1af174qca95gxf04zhxm716mi1dazfz7k3995i1nyaz7hygs3p04" 66 }, 67 { 68 "pname": "Avalonia.X11", 69 - "version": "0.10.12", 70 - "sha256": "1jjg4lhg0a95laffwm7imgs92q06whrfkaszm7svgfv1ryazv71q" 71 }, 72 { 73 "pname": "Avalonia.Xaml.Behaviors", 74 - "version": "0.10.12", 75 - "sha256": "0j897knwxpl6sss8v2wrhy4bw4nw4jqc04n8b8d4s76jaqcr3z2h" 76 }, 77 { 78 "pname": "Avalonia.Xaml.Interactions", 79 - "version": "0.10.12", 80 - "sha256": "0nyqg66sg7garc2k729k3dqixbb3asvsjd2kxympfx9q6xyz6vrh" 81 }, 82 { 83 "pname": "Avalonia.Xaml.Interactivity", 84 - "version": "0.10.12", 85 - "sha256": "13qbmz39bf29wvq82b1irci8y50fjhhj563cdwd235nm633sixqb" 86 }, 87 { 88 "pname": "Castle.Core", 89 - "version": "4.4.1", 90 - "sha256": "13dja1jxl5zwhi0ghkgvgmqdrixn57f9hk52jy5vpaaakzr550r7" 91 - }, 92 - { 93 - "pname": "Citrus.Avalonia", 94 - "version": "1.6.1", 95 - "sha256": "1hl98dmgmm6ml5gl70v7vg577n7vn6bjxaq82sgnql5g623pg18x" 96 }, 97 { 98 "pname": "DotNet.Bundle", 99 "version": "0.9.13", 100 - "sha256": "0awzvk62hgszm9b8ar87y862aj8nlm77d7hgfmp84mxny0ag03jl" 101 }, 102 { 103 "pname": "DynamicData", 104 - "version": "7.4.11", 105 - "sha256": "1vrrwkmqrdzr4ncjihfzik5ykmy1234iyp2q5qk8spz6y0gwq2h8" 106 }, 107 { 108 "pname": "DynamicData", 109 - "version": "7.4.9", 110 - "sha256": "0ssgh42fi5m6xyw36f4km04ls9nq4w8cpbck8gh7g8n3ixz05rrw" 111 }, 112 { 113 "pname": "ExpectedObjects", 114 "version": "3.5.4", 115 - "sha256": "1mklg6dx8biaaf9jxp09rddsw66l42r4fpsgnmm6szn6fj2n888k" 116 }, 117 { 118 "pname": "HarfBuzzSharp", 119 - "version": "2.8.2-preview.178", 120 - "sha256": "1p5nwzl7jpypsd6df7hgcf47r977anjlyv21wacmalsj6lvdgnvn" 121 }, 122 { 123 "pname": "HarfBuzzSharp.NativeAssets.Linux", 124 - "version": "2.8.2-preview.178", 125 - "sha256": "1402ylkxbgcnagcarqlfvg4gppy2pqs3bmin4n5mphva1g7bqb2p" 126 }, 127 { 128 "pname": "HarfBuzzSharp.NativeAssets.macOS", 129 - "version": "2.8.2-preview.178", 130 - "sha256": "0p8miaclnbfpacc1jaqxwfg0yfx9byagi4j4k91d9621vd19i8b2" 131 }, 132 { 133 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 134 - "version": "2.8.2-preview.178", 135 - "sha256": "1n9jay9sji04xly6n8bzz4591fgy8i65p21a8mv5ip9lsyj1c320" 136 }, 137 { 138 "pname": "HarfBuzzSharp.NativeAssets.Win32", 139 - "version": "2.8.2-preview.178", 140 - "sha256": "1r5syii96wv8q558cvsqw3lr10cdw6677lyiy82p6i3if51v3mr7" 141 }, 142 { 143 "pname": "JetBrains.Annotations", 144 - "version": "2021.3.0", 145 - "sha256": "01ssylllbwpana2w3iybi533zlvcsbhzjc8kr0g4kg307kjbfn8v" 146 }, 147 { 148 "pname": "Microsoft.CodeAnalysis.Analyzers", 149 - "version": "3.3.3", 150 - "sha256": "09m4cpry8ivm9ga1abrxmvw16sslxhy2k5sl14zckhqb1j164im6" 151 }, 152 { 153 "pname": "Microsoft.CodeAnalysis.Common", 154 - "version": "4.0.1", 155 - "sha256": "0axjv1nhk1z9d4c51d9yxdp09l8yqqnqaifhqcwnxnv0r4y5cka9" 156 }, 157 { 158 "pname": "Microsoft.CodeAnalysis.CSharp", 159 - "version": "4.0.1", 160 - "sha256": "1h6jfifg7pw2vacpdds4v4jqnaydg9b108irf315wzx6rh8yv9cb" 161 }, 162 { 163 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 164 - "version": "4.0.1", 165 - "sha256": "0ncbld51ja7hp6p2cabw0dx4km2syiz0z58al62h21cpbjfnls5p" 166 }, 167 { 168 "pname": "Microsoft.CodeAnalysis.NetAnalyzers", 169 - "version": "6.0.0", 170 - "sha256": "06zy947m5lrbwb684g42ijb07r5jsqycvfnphc6cqfdrfnzqv6k9" 171 }, 172 { 173 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 174 - "version": "4.0.1", 175 - "sha256": "0zhrlk30js7dp6i76zd7zilaxq26gwsl3pk85p919039786sqs9p" 176 }, 177 { 178 "pname": "Microsoft.CodeCoverage", 179 - "version": "17.0.0", 180 - "sha256": "18gdbsqf6i79ld4ikqr4jhx9ndsggm865b5xj1xmnmgg12ydp19a" 181 - }, 182 - { 183 - "pname": "Microsoft.CSharp", 184 - "version": "4.0.1", 185 - "sha256": "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj" 186 }, 187 { 188 "pname": "Microsoft.CSharp", 189 "version": "4.7.0", 190 - "sha256": "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j" 191 }, 192 { 193 "pname": "Microsoft.NET.Test.Sdk", 194 - "version": "17.0.0", 195 - "sha256": "0bknyf5kig5icwjxls7pcn51x2b2qf91dz9qv67fl70v6cczaz2r" 196 - }, 197 - { 198 - "pname": "Microsoft.NETCore.Platforms", 199 - "version": "1.0.1", 200 - "sha256": "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr" 201 }, 202 { 203 "pname": "Microsoft.NETCore.Platforms", 204 "version": "1.1.0", 205 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 206 - }, 207 - { 208 - "pname": "Microsoft.NETCore.Platforms", 209 - "version": "6.0.1", 210 - "sha256": "13v33cm88px9wymlxidzgy2ljaq33h1xna3lgdggmy7w4bbdkddh" 211 - }, 212 - { 213 - "pname": "Microsoft.NETCore.Targets", 214 - "version": "1.0.1", 215 - "sha256": "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p" 216 }, 217 { 218 "pname": "Microsoft.NETCore.Targets", 219 "version": "1.1.0", 220 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 221 - }, 222 - { 223 - "pname": "Microsoft.NETCore.Targets", 224 - "version": "5.0.0", 225 - "sha256": "0z3qyv7qal5irvabc8lmkh58zsl42mrzd1i0sssvzhv4q4kl3cg6" 226 }, 227 { 228 "pname": "Microsoft.TestPlatform.ObjectModel", 229 - "version": "17.0.0", 230 - "sha256": "1bh5scbvl6ndldqv20sl34h4y257irm9ziv2wyfc3hka6912fhn7" 231 }, 232 { 233 "pname": "Microsoft.TestPlatform.TestHost", 234 - "version": "17.0.0", 235 - "sha256": "06mn31cgpp7d8lwdyjanh89prc66j37dchn74vrd9s588rq0y70r" 236 }, 237 { 238 "pname": "Microsoft.Win32.Primitives", 239 "version": "4.3.0", 240 - "sha256": "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq" 241 }, 242 { 243 "pname": "Microsoft.Win32.SystemEvents", 244 - "version": "6.0.0", 245 - "sha256": "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p" 246 }, 247 { 248 "pname": "NETStandard.Library", 249 "version": "1.6.1", 250 - "sha256": "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8" 251 }, 252 { 253 "pname": "Newtonsoft.Json", 254 "version": "13.0.1", 255 - "sha256": "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb" 256 }, 257 { 258 "pname": "Newtonsoft.Json", 259 - "version": "9.0.1", 260 - "sha256": "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r" 261 }, 262 { 263 "pname": "NSubstitute", 264 - "version": "4.3.0", 265 - "sha256": "026kx6fab9r1a0m8p9hlznp73qhh44k4i0352szvchsis6vlj9gm" 266 }, 267 { 268 "pname": "NuGet.Frameworks", 269 - "version": "5.0.0", 270 - "sha256": "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr" 271 }, 272 { 273 "pname": "Packaging.Targets", 274 "version": "0.1.220", 275 - "sha256": "0ci4jkkqk70vwzf2sgc44a8dap70afp6yhvj967shy7anffxb511" 276 }, 277 { 278 "pname": "ReactiveUI", 279 "version": "13.2.10", 280 - "sha256": "0x4pk45wipzsjzkv23as8l0sdds665l9404gaix8c0z2n24s76gg" 281 }, 282 { 283 "pname": "ReactiveUI", 284 - "version": "17.1.17", 285 - "sha256": "1v0w88mk8bh68lcj968q61zyx6l07himild605c2xi5lb6a42z71" 286 }, 287 { 288 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 289 "version": "4.3.0", 290 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 291 }, 292 { 293 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 294 "version": "4.3.0", 295 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 296 }, 297 { 298 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 299 "version": "4.3.0", 300 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 301 }, 302 { 303 "pname": "runtime.native.System", 304 "version": "4.3.0", 305 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 306 }, 307 { 308 "pname": "runtime.native.System.IO.Compression", 309 "version": "4.3.0", 310 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 311 }, 312 { 313 "pname": "runtime.native.System.Net.Http", 314 "version": "4.3.0", 315 - "sha256": "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk" 316 }, 317 { 318 "pname": "runtime.native.System.Security.Cryptography.Apple", 319 "version": "4.3.0", 320 - "sha256": "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q" 321 }, 322 { 323 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 324 "version": "4.3.0", 325 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 326 }, 327 { 328 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 329 "version": "4.3.0", 330 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 331 }, 332 { 333 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 334 "version": "4.3.0", 335 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 336 }, 337 { 338 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 339 "version": "4.3.0", 340 - "sha256": "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi" 341 }, 342 { 343 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 344 "version": "4.3.0", 345 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 346 }, 347 { 348 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 349 "version": "4.3.0", 350 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 351 }, 352 { 353 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 354 "version": "4.3.0", 355 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 356 }, 357 { 358 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 359 "version": "4.3.0", 360 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 361 }, 362 { 363 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 364 "version": "4.3.0", 365 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 366 }, 367 { 368 "pname": "Serilog", 369 "version": "2.10.0", 370 - "sha256": "08bih205i632ywryn3zxkhb15dwgyaxbhmm1z3b5nmby9fb25k7v" 371 }, 372 { 373 "pname": "Serilog.Sinks.Debug", 374 "version": "2.0.0", 375 - "sha256": "1i7j870l47gan3gpnnlzkccn5lbm7518cnkp25a3g5gp9l0dbwpw" 376 }, 377 { 378 "pname": "Serilog.Sinks.File", 379 "version": "5.0.0", 380 - "sha256": "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q" 381 }, 382 { 383 "pname": "SkiaSharp", 384 - "version": "2.88.0-preview.178", 385 - "sha256": "062g14s6b2bixanpwihj3asm3jwvfw15mhvzqv6901afrlgzx4nk" 386 }, 387 { 388 "pname": "SkiaSharp.NativeAssets.Linux", 389 - "version": "2.88.0-preview.178", 390 - "sha256": "07kga1j51l3l302nvf537zg5clf6rflinjy0xd6i06cmhpkf3ksw" 391 }, 392 { 393 "pname": "SkiaSharp.NativeAssets.macOS", 394 - "version": "2.88.0-preview.178", 395 - "sha256": "14p95nxccs6yq4rn2h9zbb60k0232k6349zdpy31jcfr6gc99cgi" 396 }, 397 { 398 "pname": "SkiaSharp.NativeAssets.WebAssembly", 399 - "version": "2.88.0-preview.178", 400 - "sha256": "09jmcg5k1vpsal8jfs90mwv0isf2y5wq3h4hd77rv6vffn5ic4sm" 401 }, 402 { 403 "pname": "SkiaSharp.NativeAssets.Win32", 404 - "version": "2.88.0-preview.178", 405 - "sha256": "0ficil702lv3fvwpngbqh5l85i05l5jafzyh4jprzshr2qbnd8nl" 406 }, 407 { 408 "pname": "Splat", 409 "version": "10.0.1", 410 - "sha256": "18fzrn7xwjzxj4v3drs8djd3yf14bnq5n9n8vdnwfa1zk5jqpsb9" 411 }, 412 { 413 "pname": "Splat", 414 - "version": "14.1.17", 415 - "sha256": "1akhj04sbxhhfj6zdlr5c0sh696747b0x46g3ayv4yl15kwq6pz5" 416 }, 417 { 418 "pname": "System.AppContext", 419 "version": "4.3.0", 420 - "sha256": "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya" 421 }, 422 { 423 "pname": "System.Buffers", 424 "version": "4.3.0", 425 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 426 }, 427 { 428 "pname": "System.Buffers", 429 "version": "4.5.1", 430 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 431 - }, 432 - { 433 - "pname": "System.Collections", 434 - "version": "4.0.11", 435 - "sha256": "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6" 436 }, 437 { 438 "pname": "System.Collections", 439 "version": "4.3.0", 440 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 441 }, 442 { 443 "pname": "System.Collections.Concurrent", 444 "version": "4.3.0", 445 - "sha256": "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8" 446 }, 447 { 448 "pname": "System.Collections.Immutable", 449 - "version": "5.0.0", 450 - "sha256": "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r" 451 - }, 452 - { 453 - "pname": "System.Collections.NonGeneric", 454 - "version": "4.3.0", 455 - "sha256": "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k" 456 - }, 457 - { 458 - "pname": "System.Collections.Specialized", 459 - "version": "4.3.0", 460 - "sha256": "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20" 461 - }, 462 - { 463 - "pname": "System.ComponentModel", 464 - "version": "4.3.0", 465 - "sha256": "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb" 466 }, 467 { 468 "pname": "System.ComponentModel.Annotations", 469 "version": "4.5.0", 470 - "sha256": "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p" 471 }, 472 { 473 "pname": "System.ComponentModel.Annotations", 474 "version": "5.0.0", 475 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 476 - }, 477 - { 478 - "pname": "System.ComponentModel.Primitives", 479 - "version": "4.3.0", 480 - "sha256": "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0" 481 }, 482 { 483 - "pname": "System.ComponentModel.TypeConverter", 484 - "version": "4.3.0", 485 - "sha256": "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x" 486 }, 487 { 488 "pname": "System.Console", 489 "version": "4.3.0", 490 - "sha256": "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay" 491 - }, 492 - { 493 - "pname": "System.Diagnostics.Debug", 494 - "version": "4.0.11", 495 - "sha256": "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz" 496 }, 497 { 498 "pname": "System.Diagnostics.Debug", 499 "version": "4.3.0", 500 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 501 }, 502 { 503 "pname": "System.Diagnostics.DiagnosticSource", 504 "version": "4.3.0", 505 - "sha256": "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq" 506 }, 507 { 508 "pname": "System.Diagnostics.DiagnosticSource", 509 - "version": "6.0.0", 510 - "sha256": "0rrihs9lnb1h6x4h0hn6kgfnh58qq7hx8qq99gh6fayx4dcnx3s5" 511 }, 512 { 513 - "pname": "System.Diagnostics.Tools", 514 - "version": "4.0.1", 515 - "sha256": "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x" 516 }, 517 { 518 "pname": "System.Diagnostics.Tools", 519 "version": "4.3.0", 520 - "sha256": "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1" 521 - }, 522 - { 523 - "pname": "System.Diagnostics.TraceSource", 524 - "version": "4.3.0", 525 - "sha256": "1kyw4d7dpjczhw6634nrmg7yyyzq72k75x38y0l0nwhigdlp1766" 526 }, 527 { 528 "pname": "System.Diagnostics.Tracing", 529 "version": "4.3.0", 530 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 531 }, 532 { 533 "pname": "System.Drawing.Common", 534 - "version": "6.0.0", 535 - "sha256": "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz" 536 - }, 537 - { 538 - "pname": "System.Dynamic.Runtime", 539 - "version": "4.0.11", 540 - "sha256": "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9" 541 - }, 542 - { 543 - "pname": "System.Dynamic.Runtime", 544 - "version": "4.3.0", 545 - "sha256": "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk" 546 - }, 547 - { 548 - "pname": "System.Globalization", 549 - "version": "4.0.11", 550 - "sha256": "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d" 551 }, 552 { 553 "pname": "System.Globalization", 554 "version": "4.3.0", 555 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 556 }, 557 { 558 "pname": "System.Globalization.Calendars", 559 "version": "4.3.0", 560 - "sha256": "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq" 561 }, 562 { 563 "pname": "System.Globalization.Extensions", 564 "version": "4.3.0", 565 - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" 566 - }, 567 - { 568 - "pname": "System.IO", 569 - "version": "4.1.0", 570 - "sha256": "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp" 571 }, 572 { 573 "pname": "System.IO", 574 "version": "4.3.0", 575 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 576 }, 577 { 578 "pname": "System.IO.Compression", 579 "version": "4.3.0", 580 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 581 }, 582 { 583 "pname": "System.IO.Compression.ZipFile", 584 "version": "4.3.0", 585 - "sha256": "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar" 586 - }, 587 - { 588 - "pname": "System.IO.FileSystem", 589 - "version": "4.0.1", 590 - "sha256": "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1" 591 }, 592 { 593 "pname": "System.IO.FileSystem", 594 "version": "4.3.0", 595 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 596 - }, 597 - { 598 - "pname": "System.IO.FileSystem.Primitives", 599 - "version": "4.0.1", 600 - "sha256": "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612" 601 }, 602 { 603 "pname": "System.IO.FileSystem.Primitives", 604 "version": "4.3.0", 605 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 606 - }, 607 - { 608 - "pname": "System.Linq", 609 - "version": "4.1.0", 610 - "sha256": "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5" 611 }, 612 { 613 "pname": "System.Linq", 614 "version": "4.3.0", 615 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 616 - }, 617 - { 618 - "pname": "System.Linq.Expressions", 619 - "version": "4.1.0", 620 - "sha256": "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg" 621 }, 622 { 623 "pname": "System.Linq.Expressions", 624 "version": "4.3.0", 625 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 626 }, 627 { 628 "pname": "System.Memory", 629 "version": "4.5.3", 630 - "sha256": "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a" 631 }, 632 { 633 - "pname": "System.Memory", 634 - "version": "4.5.4", 635 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 636 }, 637 { 638 - "pname": "System.Net.Http", 639 "version": "4.3.0", 640 - "sha256": "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j" 641 }, 642 { 643 "pname": "System.Net.Primitives", 644 "version": "4.3.0", 645 - "sha256": "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii" 646 }, 647 { 648 "pname": "System.Net.Sockets", 649 "version": "4.3.0", 650 - "sha256": "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla" 651 }, 652 { 653 "pname": "System.Numerics.Vectors", 654 "version": "4.5.0", 655 - "sha256": "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59" 656 }, 657 { 658 "pname": "System.ObjectModel", 659 - "version": "4.0.12", 660 - "sha256": "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj" 661 }, 662 { 663 - "pname": "System.ObjectModel", 664 "version": "4.3.0", 665 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 666 }, 667 { 668 "pname": "System.Reactive", 669 "version": "5.0.0", 670 - "sha256": "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik" 671 }, 672 { 673 - "pname": "System.Reflection", 674 - "version": "4.1.0", 675 - "sha256": "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9" 676 }, 677 { 678 "pname": "System.Reflection", 679 "version": "4.3.0", 680 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 681 - }, 682 - { 683 - "pname": "System.Reflection.Emit", 684 - "version": "4.0.1", 685 - "sha256": "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp" 686 }, 687 { 688 "pname": "System.Reflection.Emit", 689 "version": "4.3.0", 690 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 691 }, 692 { 693 "pname": "System.Reflection.Emit", 694 "version": "4.7.0", 695 - "sha256": "121l1z2ypwg02yz84dy6gr82phpys0njk7yask3sihgy214w43qp" 696 - }, 697 - { 698 - "pname": "System.Reflection.Emit.ILGeneration", 699 - "version": "4.0.1", 700 - "sha256": "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0" 701 }, 702 { 703 "pname": "System.Reflection.Emit.ILGeneration", 704 "version": "4.3.0", 705 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 706 - }, 707 - { 708 - "pname": "System.Reflection.Emit.Lightweight", 709 - "version": "4.0.1", 710 - "sha256": "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr" 711 }, 712 { 713 "pname": "System.Reflection.Emit.Lightweight", 714 "version": "4.3.0", 715 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 716 - }, 717 - { 718 - "pname": "System.Reflection.Extensions", 719 - "version": "4.0.1", 720 - "sha256": "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn" 721 }, 722 { 723 "pname": "System.Reflection.Extensions", 724 "version": "4.3.0", 725 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 726 }, 727 { 728 "pname": "System.Reflection.Metadata", 729 "version": "1.6.0", 730 - "sha256": "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4" 731 }, 732 { 733 "pname": "System.Reflection.Metadata", 734 - "version": "5.0.0", 735 - "sha256": "17qsl5nanlqk9iz0l5wijdn6ka632fs1m1fvx18dfgswm258r3ss" 736 - }, 737 - { 738 - "pname": "System.Reflection.Primitives", 739 - "version": "4.0.1", 740 - "sha256": "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28" 741 }, 742 { 743 "pname": "System.Reflection.Primitives", 744 "version": "4.3.0", 745 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 746 - }, 747 - { 748 - "pname": "System.Reflection.TypeExtensions", 749 - "version": "4.1.0", 750 - "sha256": "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7" 751 }, 752 { 753 "pname": "System.Reflection.TypeExtensions", 754 "version": "4.3.0", 755 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 756 - }, 757 - { 758 - "pname": "System.Resources.ResourceManager", 759 - "version": "4.0.1", 760 - "sha256": "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi" 761 }, 762 { 763 "pname": "System.Resources.ResourceManager", 764 "version": "4.3.0", 765 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 766 - }, 767 - { 768 - "pname": "System.Runtime", 769 - "version": "4.1.0", 770 - "sha256": "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m" 771 }, 772 { 773 "pname": "System.Runtime", 774 "version": "4.3.0", 775 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 776 - }, 777 - { 778 - "pname": "System.Runtime", 779 - "version": "4.3.1", 780 - "sha256": "03ch4d2acf6q037a4njxpll2kkx3dwzlg07yxr4z5m6j1kqgmm27" 781 }, 782 { 783 "pname": "System.Runtime.CompilerServices.Unsafe", 784 "version": "4.6.0", 785 - "sha256": "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m" 786 - }, 787 - { 788 - "pname": "System.Runtime.CompilerServices.Unsafe", 789 - "version": "5.0.0", 790 - "sha256": "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x" 791 }, 792 { 793 "pname": "System.Runtime.CompilerServices.Unsafe", 794 "version": "6.0.0", 795 - "sha256": "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc" 796 - }, 797 - { 798 - "pname": "System.Runtime.Extensions", 799 - "version": "4.1.0", 800 - "sha256": "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z" 801 }, 802 { 803 "pname": "System.Runtime.Extensions", 804 "version": "4.3.0", 805 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 806 - }, 807 - { 808 - "pname": "System.Runtime.Handles", 809 - "version": "4.0.1", 810 - "sha256": "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g" 811 }, 812 { 813 "pname": "System.Runtime.Handles", 814 "version": "4.3.0", 815 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 816 - }, 817 - { 818 - "pname": "System.Runtime.InteropServices", 819 - "version": "4.1.0", 820 - "sha256": "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1" 821 }, 822 { 823 "pname": "System.Runtime.InteropServices", 824 "version": "4.3.0", 825 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 826 }, 827 { 828 "pname": "System.Runtime.InteropServices.RuntimeInformation", 829 "version": "4.3.0", 830 - "sha256": "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii" 831 }, 832 { 833 "pname": "System.Runtime.Numerics", 834 "version": "4.3.0", 835 - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" 836 }, 837 { 838 "pname": "System.Runtime.Serialization.Primitives", 839 - "version": "4.1.1", 840 - "sha256": "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k" 841 }, 842 { 843 - "pname": "System.Runtime.Serialization.Primitives", 844 "version": "4.3.0", 845 - "sha256": "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf" 846 }, 847 { 848 "pname": "System.Security.Cryptography.Algorithms", 849 "version": "4.3.0", 850 - "sha256": "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml" 851 }, 852 { 853 "pname": "System.Security.Cryptography.Cng", 854 "version": "4.3.0", 855 - "sha256": "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv" 856 }, 857 { 858 "pname": "System.Security.Cryptography.Csp", 859 "version": "4.3.0", 860 - "sha256": "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1" 861 }, 862 { 863 "pname": "System.Security.Cryptography.Encoding", 864 "version": "4.3.0", 865 - "sha256": "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32" 866 }, 867 { 868 "pname": "System.Security.Cryptography.OpenSsl", 869 "version": "4.3.0", 870 - "sha256": "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc" 871 }, 872 { 873 "pname": "System.Security.Cryptography.Primitives", 874 "version": "4.3.0", 875 - "sha256": "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby" 876 }, 877 { 878 "pname": "System.Security.Cryptography.X509Certificates", 879 "version": "4.3.0", 880 - "sha256": "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h" 881 }, 882 { 883 - "pname": "System.Security.Principal.Windows", 884 - "version": "5.0.0", 885 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 886 }, 887 { 888 - "pname": "System.Text.Encoding", 889 - "version": "4.0.11", 890 - "sha256": "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw" 891 - }, 892 - { 893 - "pname": "System.Text.Encoding", 894 "version": "4.3.0", 895 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 896 }, 897 { 898 - "pname": "System.Text.Encoding.CodePages", 899 - "version": "6.0.0", 900 - "sha256": "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww" 901 }, 902 { 903 - "pname": "System.Text.Encoding.Extensions", 904 - "version": "4.0.11", 905 - "sha256": "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs" 906 }, 907 { 908 "pname": "System.Text.Encoding.Extensions", 909 "version": "4.3.0", 910 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 911 - }, 912 - { 913 - "pname": "System.Text.RegularExpressions", 914 - "version": "4.1.0", 915 - "sha256": "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7" 916 }, 917 { 918 "pname": "System.Text.RegularExpressions", 919 "version": "4.3.0", 920 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 921 - }, 922 - { 923 - "pname": "System.Threading", 924 - "version": "4.0.11", 925 - "sha256": "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls" 926 }, 927 { 928 "pname": "System.Threading", 929 "version": "4.3.0", 930 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 931 - }, 932 - { 933 - "pname": "System.Threading.Tasks", 934 - "version": "4.0.11", 935 - "sha256": "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5" 936 }, 937 { 938 "pname": "System.Threading.Tasks", 939 "version": "4.3.0", 940 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 941 - }, 942 - { 943 - "pname": "System.Threading.Tasks.Extensions", 944 - "version": "4.0.0", 945 - "sha256": "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr" 946 }, 947 { 948 "pname": "System.Threading.Tasks.Extensions", 949 "version": "4.3.0", 950 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 951 }, 952 { 953 - "pname": "System.Threading.Tasks.Extensions", 954 - "version": "4.5.4", 955 - "sha256": "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153" 956 }, 957 { 958 "pname": "System.Threading.Timer", 959 "version": "4.3.0", 960 - "sha256": "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56" 961 }, 962 { 963 "pname": "System.ValueTuple", 964 "version": "4.5.0", 965 - "sha256": "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy" 966 - }, 967 - { 968 - "pname": "System.Xml.ReaderWriter", 969 - "version": "4.0.11", 970 - "sha256": "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5" 971 }, 972 { 973 "pname": "System.Xml.ReaderWriter", 974 "version": "4.3.0", 975 - "sha256": "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1" 976 - }, 977 - { 978 - "pname": "System.Xml.XDocument", 979 - "version": "4.0.11", 980 - "sha256": "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18" 981 }, 982 { 983 "pname": "System.Xml.XDocument", 984 "version": "4.3.0", 985 - "sha256": "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd" 986 - }, 987 - { 988 - "pname": "System.Xml.XmlDocument", 989 - "version": "4.3.0", 990 - "sha256": "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi" 991 }, 992 { 993 "pname": "ThemeEditor.Controls.ColorPicker", 994 - "version": "0.10.12", 995 - "sha256": "17kh28fkywqmz5yams8wzr50ihkv52y24gk8bz9fxl6kfzmgk0ky" 996 }, 997 { 998 "pname": "Tmds.DBus", 999 - "version": "0.10.1", 1000 - "sha256": "1wafa009cjj1rziias2n00ap0g8kdg2iig5sjlrxj2kld24lgbli" 1001 }, 1002 { 1003 "pname": "WebSocketSharp-netstandard", 1004 "version": "1.0.1", 1005 - "sha256": "0q89wiqpli72333zsa04d1vzq9xj0583hn5mih9sdd84myksz5b0" 1006 }, 1007 { 1008 "pname": "xunit", 1009 - "version": "2.4.1", 1010 - "sha256": "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20" 1011 }, 1012 { 1013 "pname": "xunit.abstractions", 1014 "version": "2.0.3", 1015 - "sha256": "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh" 1016 }, 1017 { 1018 "pname": "xunit.analyzers", 1019 - "version": "0.10.0", 1020 - "sha256": "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j" 1021 }, 1022 { 1023 "pname": "xunit.assert", 1024 - "version": "2.4.1", 1025 - "sha256": "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6" 1026 }, 1027 { 1028 "pname": "xunit.core", 1029 - "version": "2.4.1", 1030 - "sha256": "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a" 1031 }, 1032 { 1033 "pname": "xunit.extensibility.core", 1034 - "version": "2.4.1", 1035 - "sha256": "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050" 1036 }, 1037 { 1038 "pname": "xunit.extensibility.execution", 1039 - "version": "2.4.1", 1040 - "sha256": "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia" 1041 }, 1042 { 1043 "pname": "xunit.runner.console", 1044 - "version": "2.4.1", 1045 - "sha256": "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13" 1046 }, 1047 { 1048 "pname": "xunit.runner.visualstudio", 1049 - "version": "2.4.3", 1050 - "sha256": "0j1d0rbcm7pp6dypi61sjxp8l22sv261252z55b243l39jgv2rp3" 1051 } 1052 ]
··· 1 [ 2 { 3 "pname": "Autofac", 4 + "version": "7.1.0", 5 + "hash": "sha256-9UJoNg/6AV0I2xieMevylwfPu8A0qcpIWPJZFgzT6wA=" 6 }, 7 { 8 "pname": "Avalonia", 9 + "version": "0.10.22", 10 + "hash": "sha256-5EY2FMhtry/RJGXuHzMvdiGEnnDN5OP+M3cEdxR/n7c=" 11 }, 12 { 13 "pname": "Avalonia.Angle.Windows.Natives", 14 "version": "2.1.0.2020091801", 15 + "hash": "sha256-ahDcJNCqlNniItcat7owREQ0hfIwMWFNhnDu89lAVRI=" 16 + }, 17 + { 18 + "pname": "Avalonia.BuildServices", 19 + "version": "0.0.29", 20 + "hash": "sha256-WPHRMNowRnYSCh88DWNBCltWsLPyOfzXGzBqLYE7tRY=" 21 }, 22 { 23 "pname": "Avalonia.Controls.DataGrid", 24 + "version": "0.10.22", 25 + "hash": "sha256-8p4qWuy8BeXaUVM6H8hWJ2ajl7tgbBAWN3EoiKPmphM=" 26 }, 27 { 28 "pname": "Avalonia.Desktop", 29 + "version": "0.10.22", 30 + "hash": "sha256-p4fEyykjYwaOgTSBNtK0+v+VvIypg818R4mBWnGzmHI=" 31 }, 32 { 33 "pname": "Avalonia.Diagnostics", 34 + "version": "0.10.22", 35 + "hash": "sha256-CIS6A47DmbNt/AQGoDWfBs/+7/0busUFCdvX0Su+m9Y=" 36 }, 37 { 38 "pname": "Avalonia.FreeDesktop", 39 + "version": "0.10.22", 40 + "hash": "sha256-IAyKCqAUMLpm1r39AI7KzeC36dNe87oJwkk7gxJj5Y0=" 41 }, 42 { 43 "pname": "Avalonia.Markup.Xaml.Loader", 44 + "version": "0.10.22", 45 + "hash": "sha256-XRl10uLLt57zNxXL9CXWWTlcXEtX2znOVg5VqfyngZc=" 46 }, 47 { 48 "pname": "Avalonia.Native", 49 + "version": "0.10.22", 50 + "hash": "sha256-I+4YCsFXcXOYccSWwO9nxFsk4wITafkSkj/55uO5rSo=" 51 }, 52 { 53 "pname": "Avalonia.ReactiveUI", 54 + "version": "0.10.22", 55 + "hash": "sha256-czEyKZml1wJSLWULT124pPOKkJr5gCMT9eu4qaCJl9A=" 56 }, 57 { 58 "pname": "Avalonia.Remote.Protocol", 59 + "version": "0.10.22", 60 + "hash": "sha256-dEZCLrgO5ogFJ+yAu030NDAWLs98KrLpMcMx2AX8+ig=" 61 }, 62 { 63 "pname": "Avalonia.Skia", 64 + "version": "0.10.22", 65 + "hash": "sha256-4ty55BXtpeytJtGCnCyD4PBXk/fQPVmwXvr1S3MBseI=" 66 }, 67 { 68 "pname": "Avalonia.Win32", 69 + "version": "0.10.22", 70 + "hash": "sha256-AHUqjeqvJkHKuRSvHma+MbfgnNs1/YmVZkyFHoU7SQQ=" 71 }, 72 { 73 "pname": "Avalonia.X11", 74 + "version": "0.10.22", 75 + "hash": "sha256-PIvSUg01ggYr8w8IONoYo0cgnqwze2v+t0WvVMOEe8o=" 76 }, 77 { 78 "pname": "Avalonia.Xaml.Behaviors", 79 + "version": "0.10.19", 80 + "hash": "sha256-I4qs8Rl9pyRVGvsh5n0V+H+CTdg/sqOSomFL5z7BoXY=" 81 }, 82 { 83 "pname": "Avalonia.Xaml.Interactions", 84 + "version": "0.10.19", 85 + "hash": "sha256-XLM3Ov0f3S78K1RIZv6tNPpl/ai5yi34Z78zwgGNzgE=" 86 }, 87 { 88 "pname": "Avalonia.Xaml.Interactivity", 89 + "version": "0.10.19", 90 + "hash": "sha256-ZxX8FIGg2+H70c/81hnILW2RVhSNSUXIZhZcWpQE3FE=" 91 }, 92 { 93 "pname": "Castle.Core", 94 + "version": "5.1.1", 95 + "hash": "sha256-oVkQB+ON7S6Q27OhXrTLaxTL0kWB58HZaFFuiw4iTrE=" 96 }, 97 { 98 "pname": "DotNet.Bundle", 99 "version": "0.9.13", 100 + "hash": "sha256-VA7wFPC2V4JudQ+edk6lFkklDPIHZYVWql8/KMzcnys=" 101 }, 102 { 103 "pname": "DynamicData", 104 + "version": "7.1.1", 105 + "hash": "sha256-cFskEA5n9Q6wS+nt4nR1jaiC+TzirBu8pHL9g/jErJM=" 106 }, 107 { 108 "pname": "DynamicData", 109 + "version": "7.14.2", 110 + "hash": "sha256-UyCC3hPCEm8RoK+d66vqagY4Yi0GzRwO1qoKcAhPZx4=" 111 }, 112 { 113 "pname": "ExpectedObjects", 114 "version": "3.5.4", 115 + "hash": "sha256-EyFkhXTGfm1qtU9fR7Ig1BiuW8sJ3C6TUyou1Jt5dNY=" 116 + }, 117 + { 118 + "pname": "FluentAssertions", 119 + "version": "6.12.0", 120 + "hash": "sha256-LGlPe+G7lBwj5u3ttQZiKX2+C195ddRAHPuDkY6x0BE=" 121 + }, 122 + { 123 + "pname": "Fody", 124 + "version": "6.8.0", 125 + "hash": "sha256-2laYscz0i0LalGTAup7dsh6XlYRZSojYpp8XOwZJJfg=" 126 }, 127 { 128 "pname": "HarfBuzzSharp", 129 + "version": "2.8.2.1-preview.108", 130 + "hash": "sha256-H2C71GTwKMoTNq2GrNbusLUS7+ca53MYfWYV70i/RHc=" 131 }, 132 { 133 "pname": "HarfBuzzSharp.NativeAssets.Linux", 134 + "version": "2.8.2.1-preview.108", 135 + "hash": "sha256-ROYaZH1MZVKZ+6ToHq+GCf3FC5rz9Z7RWOEJlf1+m5s=" 136 }, 137 { 138 "pname": "HarfBuzzSharp.NativeAssets.macOS", 139 + "version": "2.8.2.1-preview.108", 140 + "hash": "sha256-WgIgnHLOJw52XKccDwmsptTBjTcWgT7dL064yHmmZ5s=" 141 }, 142 { 143 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 144 + "version": "2.8.2.1-preview.108", 145 + "hash": "sha256-pXSDS81Y185RZVqA5ALPGsuOcB1GSTn+VpdbPcpYeJY=" 146 }, 147 { 148 "pname": "HarfBuzzSharp.NativeAssets.Win32", 149 + "version": "2.8.2.1-preview.108", 150 + "hash": "sha256-YZaC40YqLKiOrVECbKivJsEqkydZgQfLrENXLJOt3lg=" 151 }, 152 { 153 "pname": "JetBrains.Annotations", 154 + "version": "2023.2.0", 155 + "hash": "sha256-Um10fSmO+21I7f+lbzzVq5e8GBijJ9amTvOlt362p1s=" 156 }, 157 { 158 "pname": "Microsoft.CodeAnalysis.Analyzers", 159 + "version": "3.3.4", 160 + "hash": "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE=" 161 }, 162 { 163 "pname": "Microsoft.CodeAnalysis.Common", 164 + "version": "4.7.0", 165 + "hash": "sha256-nDDpCy8WQADxo7LzWkDupuxs0GCjvuhX8EeKpjTnRP4=" 166 }, 167 { 168 "pname": "Microsoft.CodeAnalysis.CSharp", 169 + "version": "4.7.0", 170 + "hash": "sha256-0FoP+zHqbhLhyjTPx8I7MCfHqCbmhwE8aRCVe4eC49M=" 171 }, 172 { 173 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 174 + "version": "4.7.0", 175 + "hash": "sha256-528s2qnDVHswC9DvE1+Rp9Jx83n3Y5RJvtA20x3pZgA=" 176 }, 177 { 178 "pname": "Microsoft.CodeAnalysis.NetAnalyzers", 179 + "version": "8.0.0", 180 + "hash": "sha256-Z6MIb9lJskYOEiBZR36pwFI5wWekajx5WJvVA2a/f9Y=" 181 }, 182 { 183 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 184 + "version": "4.7.0", 185 + "hash": "sha256-eESDYyoGmGB6fbgDJvCaFPbwB2Cq9SFpP5nhYxK9bEw=" 186 }, 187 { 188 "pname": "Microsoft.CodeCoverage", 189 + "version": "17.7.2", 190 + "hash": "sha256-FfKMhyVEAiRd3VDkotnFHnSmlYGQTh4ZqkEF2+8sriY=" 191 }, 192 { 193 "pname": "Microsoft.CSharp", 194 "version": "4.7.0", 195 + "hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0=" 196 }, 197 { 198 "pname": "Microsoft.NET.Test.Sdk", 199 + "version": "17.7.2", 200 + "hash": "sha256-EMtV5zcucAcJMGIb/KSqIQnK7PA6aJCgZSobc+5t6SE=" 201 }, 202 { 203 "pname": "Microsoft.NETCore.Platforms", 204 "version": "1.1.0", 205 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 206 }, 207 { 208 "pname": "Microsoft.NETCore.Targets", 209 "version": "1.1.0", 210 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 211 }, 212 { 213 "pname": "Microsoft.TestPlatform.ObjectModel", 214 + "version": "17.7.2", 215 + "hash": "sha256-uOe3ELE7iAusTBgxhsx78d4lBw28eDTew13ZnW2bsnU=" 216 }, 217 { 218 "pname": "Microsoft.TestPlatform.TestHost", 219 + "version": "17.7.2", 220 + "hash": "sha256-pox8kez5tgXX4mAiu9qybrlI7oURzPm7YsCd42N4+us=" 221 }, 222 { 223 "pname": "Microsoft.Win32.Primitives", 224 "version": "4.3.0", 225 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 226 }, 227 { 228 "pname": "Microsoft.Win32.SystemEvents", 229 + "version": "7.0.0", 230 + "hash": "sha256-i6JojctqrqfJ4Wa+BDtaKZEol26jYq5DTQHar2M9B64=" 231 }, 232 { 233 "pname": "NETStandard.Library", 234 "version": "1.6.1", 235 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 236 }, 237 { 238 "pname": "Newtonsoft.Json", 239 "version": "13.0.1", 240 + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" 241 }, 242 { 243 "pname": "Newtonsoft.Json", 244 + "version": "13.0.3", 245 + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" 246 }, 247 { 248 "pname": "NSubstitute", 249 + "version": "5.1.0", 250 + "hash": "sha256-ORpubFd6VoRjA9ZeyZdJPY/xnQXM90O6McMswt8VVG4=" 251 }, 252 { 253 "pname": "NuGet.Frameworks", 254 + "version": "6.5.0", 255 + "hash": "sha256-ElqfN4CcKxT3hP2qvxxObb4mnBlYG89IMxO0Sm5oZ2g=" 256 }, 257 { 258 "pname": "Packaging.Targets", 259 "version": "0.1.220", 260 + "hash": "sha256-IZTVnbPqeKiPSXJDb65T4FzVkCKEPS3c5xucieeUJDI=" 261 + }, 262 + { 263 + "pname": "ReactiveMarbles.ObservableEvents.SourceGenerator", 264 + "version": "1.2.3", 265 + "hash": "sha256-tR/LT14DaLrNsTxSX+9XwH572cigRV22+uB6JSmdt7M=" 266 + }, 267 + { 268 + "pname": "ReactiveProperty", 269 + "version": "9.3.1", 270 + "hash": "sha256-2gCpFE9rMDbDlyNi1Fncbr5Bb3u5GDM8VUECrX4PId4=" 271 + }, 272 + { 273 + "pname": "ReactiveProperty.Core", 274 + "version": "9.3.1", 275 + "hash": "sha256-dYZ1daWZVVKWHpprLtiJo6n8DRCsORgNHswFy2D39SU=" 276 }, 277 { 278 "pname": "ReactiveUI", 279 "version": "13.2.10", 280 + "hash": "sha256-75mjibDiA4Z6VI8AkmgxRremAUVaDbHnl/rfyAuZl3Q=" 281 }, 282 { 283 "pname": "ReactiveUI", 284 + "version": "19.4.1", 285 + "hash": "sha256-cN00n2bjSc8p1mpYxF3S9KopdU0XrLVI0g8pAjehHfw=" 286 + }, 287 + { 288 + "pname": "ReactiveUI.Fody", 289 + "version": "19.4.1", 290 + "hash": "sha256-SYqDw5ghH0wddNJOa1Dc/haE0NSOMa8I4d1EKjoVgsg=" 291 + }, 292 + { 293 + "pname": "runtime.any.System.Collections", 294 + "version": "4.3.0", 295 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 296 + }, 297 + { 298 + "pname": "runtime.any.System.Diagnostics.Tools", 299 + "version": "4.3.0", 300 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 301 + }, 302 + { 303 + "pname": "runtime.any.System.Diagnostics.Tracing", 304 + "version": "4.3.0", 305 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 306 + }, 307 + { 308 + "pname": "runtime.any.System.Globalization", 309 + "version": "4.3.0", 310 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 311 + }, 312 + { 313 + "pname": "runtime.any.System.Globalization.Calendars", 314 + "version": "4.3.0", 315 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 316 + }, 317 + { 318 + "pname": "runtime.any.System.IO", 319 + "version": "4.3.0", 320 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 321 + }, 322 + { 323 + "pname": "runtime.any.System.Reflection", 324 + "version": "4.3.0", 325 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 326 + }, 327 + { 328 + "pname": "runtime.any.System.Reflection.Extensions", 329 + "version": "4.3.0", 330 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 331 + }, 332 + { 333 + "pname": "runtime.any.System.Reflection.Primitives", 334 + "version": "4.3.0", 335 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 336 + }, 337 + { 338 + "pname": "runtime.any.System.Resources.ResourceManager", 339 + "version": "4.3.0", 340 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 341 + }, 342 + { 343 + "pname": "runtime.any.System.Runtime", 344 + "version": "4.3.0", 345 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 346 + }, 347 + { 348 + "pname": "runtime.any.System.Runtime.Handles", 349 + "version": "4.3.0", 350 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 351 + }, 352 + { 353 + "pname": "runtime.any.System.Runtime.InteropServices", 354 + "version": "4.3.0", 355 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 356 + }, 357 + { 358 + "pname": "runtime.any.System.Text.Encoding", 359 + "version": "4.3.0", 360 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 361 + }, 362 + { 363 + "pname": "runtime.any.System.Text.Encoding.Extensions", 364 + "version": "4.3.0", 365 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 366 + }, 367 + { 368 + "pname": "runtime.any.System.Threading.Tasks", 369 + "version": "4.3.0", 370 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 371 + }, 372 + { 373 + "pname": "runtime.any.System.Threading.Timer", 374 + "version": "4.3.0", 375 + "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" 376 }, 377 { 378 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 379 "version": "4.3.0", 380 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 381 }, 382 { 383 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 384 "version": "4.3.0", 385 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 386 }, 387 { 388 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 389 "version": "4.3.0", 390 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 391 }, 392 { 393 "pname": "runtime.native.System", 394 "version": "4.3.0", 395 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 396 }, 397 { 398 "pname": "runtime.native.System.IO.Compression", 399 "version": "4.3.0", 400 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 401 }, 402 { 403 "pname": "runtime.native.System.Net.Http", 404 "version": "4.3.0", 405 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 406 }, 407 { 408 "pname": "runtime.native.System.Security.Cryptography.Apple", 409 "version": "4.3.0", 410 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 411 }, 412 { 413 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 414 "version": "4.3.0", 415 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 416 }, 417 { 418 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 419 "version": "4.3.0", 420 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 421 }, 422 { 423 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 424 "version": "4.3.0", 425 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 426 }, 427 { 428 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 429 "version": "4.3.0", 430 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 431 }, 432 { 433 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 434 "version": "4.3.0", 435 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 436 }, 437 { 438 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 439 "version": "4.3.0", 440 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 441 }, 442 { 443 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 444 "version": "4.3.0", 445 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 446 }, 447 { 448 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 449 "version": "4.3.0", 450 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 451 }, 452 { 453 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 454 "version": "4.3.0", 455 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 456 + }, 457 + { 458 + "pname": "runtime.unix.Microsoft.Win32.Primitives", 459 + "version": "4.3.0", 460 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 461 + }, 462 + { 463 + "pname": "runtime.unix.System.Console", 464 + "version": "4.3.0", 465 + "hash": "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190=" 466 + }, 467 + { 468 + "pname": "runtime.unix.System.Diagnostics.Debug", 469 + "version": "4.3.0", 470 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 471 + }, 472 + { 473 + "pname": "runtime.unix.System.IO.FileSystem", 474 + "version": "4.3.0", 475 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 476 + }, 477 + { 478 + "pname": "runtime.unix.System.Net.Primitives", 479 + "version": "4.3.0", 480 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 481 + }, 482 + { 483 + "pname": "runtime.unix.System.Net.Sockets", 484 + "version": "4.3.0", 485 + "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" 486 + }, 487 + { 488 + "pname": "runtime.unix.System.Private.Uri", 489 + "version": "4.3.0", 490 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 491 + }, 492 + { 493 + "pname": "runtime.unix.System.Runtime.Extensions", 494 + "version": "4.3.0", 495 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 496 }, 497 { 498 "pname": "Serilog", 499 "version": "2.10.0", 500 + "hash": "sha256-+8wilkt+VVvW+KFWuLryj7cSFpz9D+sz92KYWICAcSE=" 501 + }, 502 + { 503 + "pname": "Serilog", 504 + "version": "3.0.1", 505 + "hash": "sha256-cfcZXT2eQ4K6RQ0twDYPN5jkDpG9dYqpmHJX4zWrL+o=" 506 }, 507 { 508 "pname": "Serilog.Sinks.Debug", 509 "version": "2.0.0", 510 + "hash": "sha256-/PLVAE33lTdUEXdahkI5ddFiGZufWnvfsOodQsFB8sQ=" 511 }, 512 { 513 "pname": "Serilog.Sinks.File", 514 "version": "5.0.0", 515 + "hash": "sha256-GKy9hwOdlu2W0Rw8LiPyEwus+sDtSOTl8a5l9uqz+SQ=" 516 }, 517 { 518 "pname": "SkiaSharp", 519 + "version": "2.88.1-preview.108", 520 + "hash": "sha256-5r0MDLe804yedcgOgCDsZ6PvsLA9gZqimo/V16AZVQc=" 521 }, 522 { 523 "pname": "SkiaSharp.NativeAssets.Linux", 524 + "version": "2.88.1-preview.108", 525 + "hash": "sha256-10t3pmhdfwRnpabAXIBAnjhZkhKxOTb6XfxqgZkUTqY=" 526 }, 527 { 528 "pname": "SkiaSharp.NativeAssets.macOS", 529 + "version": "2.88.1-preview.108", 530 + "hash": "sha256-JTiKU3h2UMjQBEOYOq3rIRsjwqynXab0S0tAqk/Dl+0=" 531 }, 532 { 533 "pname": "SkiaSharp.NativeAssets.WebAssembly", 534 + "version": "2.88.1-preview.108", 535 + "hash": "sha256-rZ1Snmz+0daTtt4uPavCYRriRnWg+QlyVidNxCV+CSk=" 536 }, 537 { 538 "pname": "SkiaSharp.NativeAssets.Win32", 539 + "version": "2.88.1-preview.108", 540 + "hash": "sha256-9noqwRicVwd920EvHzGVcDvgU5j6Zaj54LoWnC9d6RU=" 541 }, 542 { 543 "pname": "Splat", 544 "version": "10.0.1", 545 + "hash": "sha256-aemLZZk/KMdt28gmW7BdJDg/mmxI5zY2kf1L3o/N36E=" 546 }, 547 { 548 "pname": "Splat", 549 + "version": "14.6.37", 550 + "hash": "sha256-UPRwJetwHR31Z7sw7c0dojnvlFAmDNQEF7RXssiMQuY=" 551 + }, 552 + { 553 + "pname": "Splat", 554 + "version": "14.7.1", 555 + "hash": "sha256-RzNQU8tTstC1MBZL6D11Ivq69pmPvl+A9eT9zXhdSOc=" 556 + }, 557 + { 558 + "pname": "Splat.Autofac", 559 + "version": "14.7.1", 560 + "hash": "sha256-6Lg4C24wDMddJn5HrC9uyFuWrE12gPzayrcxyqvvI0w=" 561 }, 562 { 563 "pname": "System.AppContext", 564 "version": "4.3.0", 565 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 566 }, 567 { 568 "pname": "System.Buffers", 569 "version": "4.3.0", 570 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 571 }, 572 { 573 "pname": "System.Buffers", 574 "version": "4.5.1", 575 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 576 }, 577 { 578 "pname": "System.Collections", 579 "version": "4.3.0", 580 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 581 }, 582 { 583 "pname": "System.Collections.Concurrent", 584 "version": "4.3.0", 585 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 586 }, 587 { 588 "pname": "System.Collections.Immutable", 589 + "version": "7.0.0", 590 + "hash": "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk=" 591 }, 592 { 593 "pname": "System.ComponentModel.Annotations", 594 "version": "4.5.0", 595 + "hash": "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso=" 596 }, 597 { 598 "pname": "System.ComponentModel.Annotations", 599 "version": "5.0.0", 600 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 601 }, 602 { 603 + "pname": "System.Configuration.ConfigurationManager", 604 + "version": "4.4.0", 605 + "hash": "sha256-+8wGYllXnIxRzy9dLhZFB88GoPj8ivYXS0KUfcivT8I=" 606 }, 607 { 608 "pname": "System.Console", 609 "version": "4.3.0", 610 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 611 }, 612 { 613 "pname": "System.Diagnostics.Debug", 614 "version": "4.3.0", 615 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 616 }, 617 { 618 "pname": "System.Diagnostics.DiagnosticSource", 619 "version": "4.3.0", 620 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 621 }, 622 { 623 "pname": "System.Diagnostics.DiagnosticSource", 624 + "version": "4.7.1", 625 + "hash": "sha256-l2TM1pfyRF70Xmzoz1dAqWkB8+/K6b8t5Tj7aF1UO9Y=" 626 }, 627 { 628 + "pname": "System.Diagnostics.EventLog", 629 + "version": "6.0.0", 630 + "hash": "sha256-zUXIQtAFKbiUMKCrXzO4mOTD5EUphZzghBYKXprowSM=" 631 }, 632 { 633 "pname": "System.Diagnostics.Tools", 634 "version": "4.3.0", 635 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 636 }, 637 { 638 "pname": "System.Diagnostics.Tracing", 639 "version": "4.3.0", 640 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 641 }, 642 { 643 "pname": "System.Drawing.Common", 644 + "version": "7.0.0", 645 + "hash": "sha256-t4FBgTMhuOA5FA23fg0WQOGuH0njV7hJXST/Ln/Znks=" 646 }, 647 { 648 "pname": "System.Globalization", 649 "version": "4.3.0", 650 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 651 }, 652 { 653 "pname": "System.Globalization.Calendars", 654 "version": "4.3.0", 655 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 656 }, 657 { 658 "pname": "System.Globalization.Extensions", 659 "version": "4.3.0", 660 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 661 }, 662 { 663 "pname": "System.IO", 664 "version": "4.3.0", 665 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 666 }, 667 { 668 "pname": "System.IO.Compression", 669 "version": "4.3.0", 670 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 671 }, 672 { 673 "pname": "System.IO.Compression.ZipFile", 674 "version": "4.3.0", 675 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 676 }, 677 { 678 "pname": "System.IO.FileSystem", 679 "version": "4.3.0", 680 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 681 }, 682 { 683 "pname": "System.IO.FileSystem.Primitives", 684 "version": "4.3.0", 685 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 686 }, 687 { 688 "pname": "System.Linq", 689 "version": "4.3.0", 690 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 691 }, 692 { 693 "pname": "System.Linq.Expressions", 694 "version": "4.3.0", 695 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 696 }, 697 { 698 "pname": "System.Memory", 699 "version": "4.5.3", 700 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 701 }, 702 { 703 + "pname": "System.Net.Http", 704 + "version": "4.3.0", 705 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 706 }, 707 { 708 + "pname": "System.Net.NameResolution", 709 "version": "4.3.0", 710 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 711 }, 712 { 713 "pname": "System.Net.Primitives", 714 "version": "4.3.0", 715 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 716 }, 717 { 718 "pname": "System.Net.Sockets", 719 "version": "4.3.0", 720 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 721 }, 722 { 723 "pname": "System.Numerics.Vectors", 724 "version": "4.5.0", 725 + "hash": "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8=" 726 }, 727 { 728 "pname": "System.ObjectModel", 729 + "version": "4.3.0", 730 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 731 }, 732 { 733 + "pname": "System.Private.Uri", 734 "version": "4.3.0", 735 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 736 }, 737 { 738 "pname": "System.Reactive", 739 "version": "5.0.0", 740 + "hash": "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE=" 741 }, 742 { 743 + "pname": "System.Reactive", 744 + "version": "6.0.0", 745 + "hash": "sha256-hXB18OsiUHSCmRF3unAfdUEcbXVbG6/nZxcyz13oe9Y=" 746 }, 747 { 748 "pname": "System.Reflection", 749 "version": "4.3.0", 750 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 751 }, 752 { 753 "pname": "System.Reflection.Emit", 754 "version": "4.3.0", 755 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 756 }, 757 { 758 "pname": "System.Reflection.Emit", 759 "version": "4.7.0", 760 + "hash": "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg=" 761 }, 762 { 763 "pname": "System.Reflection.Emit.ILGeneration", 764 "version": "4.3.0", 765 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 766 }, 767 { 768 "pname": "System.Reflection.Emit.Lightweight", 769 "version": "4.3.0", 770 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 771 }, 772 { 773 "pname": "System.Reflection.Extensions", 774 "version": "4.3.0", 775 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 776 }, 777 { 778 "pname": "System.Reflection.Metadata", 779 "version": "1.6.0", 780 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 781 }, 782 { 783 "pname": "System.Reflection.Metadata", 784 + "version": "7.0.0", 785 + "hash": "sha256-GwAKQhkhPBYTqmRdG9c9taqrKSKDwyUgOEhWLKxWNPI=" 786 }, 787 { 788 "pname": "System.Reflection.Primitives", 789 "version": "4.3.0", 790 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 791 }, 792 { 793 "pname": "System.Reflection.TypeExtensions", 794 "version": "4.3.0", 795 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 796 }, 797 { 798 "pname": "System.Resources.ResourceManager", 799 "version": "4.3.0", 800 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 801 }, 802 { 803 "pname": "System.Runtime", 804 "version": "4.3.0", 805 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 806 }, 807 { 808 "pname": "System.Runtime.CompilerServices.Unsafe", 809 "version": "4.6.0", 810 + "hash": "sha256-FTjQeMuvqnKxpoVsVh/OlQ21NMaZiFtOdv7VdZ+Iv3Y=" 811 }, 812 { 813 "pname": "System.Runtime.CompilerServices.Unsafe", 814 "version": "6.0.0", 815 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 816 }, 817 { 818 "pname": "System.Runtime.Extensions", 819 "version": "4.3.0", 820 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 821 }, 822 { 823 "pname": "System.Runtime.Handles", 824 "version": "4.3.0", 825 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 826 }, 827 { 828 "pname": "System.Runtime.InteropServices", 829 "version": "4.3.0", 830 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 831 }, 832 { 833 "pname": "System.Runtime.InteropServices.RuntimeInformation", 834 "version": "4.3.0", 835 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 836 }, 837 { 838 "pname": "System.Runtime.Numerics", 839 "version": "4.3.0", 840 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 841 }, 842 { 843 "pname": "System.Runtime.Serialization.Primitives", 844 + "version": "4.3.0", 845 + "hash": "sha256-zu5m1M9usend+i9sbuD6Xbizdo8Z6N5PEF9DAtEVewc=" 846 }, 847 { 848 + "pname": "System.Security.Claims", 849 "version": "4.3.0", 850 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 851 }, 852 { 853 "pname": "System.Security.Cryptography.Algorithms", 854 "version": "4.3.0", 855 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 856 }, 857 { 858 "pname": "System.Security.Cryptography.Cng", 859 "version": "4.3.0", 860 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 861 }, 862 { 863 "pname": "System.Security.Cryptography.Csp", 864 "version": "4.3.0", 865 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 866 }, 867 { 868 "pname": "System.Security.Cryptography.Encoding", 869 "version": "4.3.0", 870 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 871 }, 872 { 873 "pname": "System.Security.Cryptography.OpenSsl", 874 "version": "4.3.0", 875 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 876 }, 877 { 878 "pname": "System.Security.Cryptography.Primitives", 879 "version": "4.3.0", 880 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 881 + }, 882 + { 883 + "pname": "System.Security.Cryptography.ProtectedData", 884 + "version": "4.4.0", 885 + "hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=" 886 }, 887 { 888 "pname": "System.Security.Cryptography.X509Certificates", 889 "version": "4.3.0", 890 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 891 }, 892 { 893 + "pname": "System.Security.Principal", 894 + "version": "4.3.0", 895 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 896 }, 897 { 898 + "pname": "System.Security.Principal.Windows", 899 "version": "4.3.0", 900 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 901 }, 902 { 903 + "pname": "System.Security.Principal.Windows", 904 + "version": "4.7.0", 905 + "hash": "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg=" 906 }, 907 { 908 + "pname": "System.Text.Encoding", 909 + "version": "4.3.0", 910 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 911 }, 912 { 913 "pname": "System.Text.Encoding.Extensions", 914 "version": "4.3.0", 915 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 916 }, 917 { 918 "pname": "System.Text.RegularExpressions", 919 "version": "4.3.0", 920 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 921 }, 922 { 923 "pname": "System.Threading", 924 "version": "4.3.0", 925 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 926 }, 927 { 928 "pname": "System.Threading.Tasks", 929 "version": "4.3.0", 930 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 931 }, 932 { 933 "pname": "System.Threading.Tasks.Extensions", 934 "version": "4.3.0", 935 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 936 }, 937 { 938 + "pname": "System.Threading.ThreadPool", 939 + "version": "4.3.0", 940 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 941 }, 942 { 943 "pname": "System.Threading.Timer", 944 "version": "4.3.0", 945 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 946 }, 947 { 948 "pname": "System.ValueTuple", 949 "version": "4.5.0", 950 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 951 }, 952 { 953 "pname": "System.Xml.ReaderWriter", 954 "version": "4.3.0", 955 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 956 }, 957 { 958 "pname": "System.Xml.XDocument", 959 "version": "4.3.0", 960 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 961 }, 962 { 963 "pname": "ThemeEditor.Controls.ColorPicker", 964 + "version": "0.10.17", 965 + "hash": "sha256-SoamofgQCfZFGJjTyD7KL8a+cIFzTmaDCIbHlfbz/qw=" 966 }, 967 { 968 "pname": "Tmds.DBus", 969 + "version": "0.9.0", 970 + "hash": "sha256-w332WVsJrdAOnlSUtgvatSTtnoC81C3LG6J2ip42fW8=" 971 }, 972 { 973 "pname": "WebSocketSharp-netstandard", 974 "version": "1.0.1", 975 + "hash": "sha256-YJWvp68EtaYTjLVYOFABsif8d2gEKP3HGOJEenHkCWE=" 976 }, 977 { 978 "pname": "xunit", 979 + "version": "2.5.1", 980 + "hash": "sha256-SxDG/dFHk+7F4x4PYXRyw8PwuqcmH7Mhz9PHA2sVuYg=" 981 }, 982 { 983 "pname": "xunit.abstractions", 984 "version": "2.0.3", 985 + "hash": "sha256-0D1y/C34iARI96gb3bAOG8tcGPMjx+fMabTPpydGlAM=" 986 }, 987 { 988 "pname": "xunit.analyzers", 989 + "version": "1.3.0", 990 + "hash": "sha256-+l50DUYCEdnrHg6cKUfsNx8m0BRwAVdqURCQb0aZLLQ=" 991 }, 992 { 993 "pname": "xunit.assert", 994 + "version": "2.5.1", 995 + "hash": "sha256-2U83B5QOaEgVUXBQ5/juqEqrKxeyo5LKTKQ/JCFUy/E=" 996 }, 997 { 998 "pname": "xunit.core", 999 + "version": "2.5.1", 1000 + "hash": "sha256-igzHINMd6V01nEg6Hc3YpXdL4MT0ZlCY1RwlxQEO5Xg=" 1001 }, 1002 { 1003 "pname": "xunit.extensibility.core", 1004 + "version": "2.5.1", 1005 + "hash": "sha256-1wAQJZljPyQhhvaKuE0XV6OyFGxxyFtTWMCQd57mctw=" 1006 }, 1007 { 1008 "pname": "xunit.extensibility.execution", 1009 + "version": "2.5.1", 1010 + "hash": "sha256-sgje8DfOxpdV4xXcGB5llrzr9rTlPPIQIr/PjP2A0p8=" 1011 }, 1012 { 1013 "pname": "xunit.runner.console", 1014 + "version": "2.5.1", 1015 + "hash": "sha256-CLf7tVyeslvtAqlFlp7Mr/lHq+C3p1duLzXGiHdZigM=" 1016 }, 1017 { 1018 "pname": "xunit.runner.visualstudio", 1019 + "version": "2.5.1", 1020 + "hash": "sha256-HbQNZB/4Kjv7UxP5cWAteiNiRErsqnWhCemcBiQ95Hg=" 1021 } 1022 ]
+7 -15
pkgs/by-name/al/alttpr-opentracker/package.nix
··· 17 }: 18 buildDotnetModule rec { 19 pname = "opentracker"; 20 - version = "1.8.5"; 21 22 src = fetchFromGitHub { 23 owner = "trippsc2"; 24 - repo = pname; 25 tag = version; 26 - hash = "sha512-nWkPgVYdnBJibyJRdLPe3O3RioDPbzumSritRejmr4CeiPb7aUTON7HjivcV/GKor1guEYu+TJ+QxYrqO/eppg=="; 27 }; 28 29 - patches = [./remove-project.patch]; 30 - 31 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 32 33 nugetDeps = ./deps.json; 34 35 - projectFile = "OpenTracker.sln"; 36 - executables = ["OpenTracker"]; 37 - 38 - doCheck = true; 39 - disabledTests = [ 40 - "OpenTracker.UnitTests.Models.Nodes.Factories.SLightWorldConnectionFactoryTests.GetNodeConnections_ShouldReturnExpectedValue" 41 - "OpenTracker.UnitTests.Models.Sections.Factories.ItemSectionFactoryTests.GetItemSection_ShouldReturnExpected" 42 - ]; 43 44 nativeBuildInputs = [ 45 autoPatchelfHook ··· 86 license = licenses.mit; 87 maintainers = [ ]; 88 mainProgram = "OpenTracker"; 89 - platforms = ["x86_64-linux"]; 90 }; 91 }
··· 17 }: 18 buildDotnetModule rec { 19 pname = "opentracker"; 20 + version = "1.8.6"; 21 22 src = fetchFromGitHub { 23 owner = "trippsc2"; 24 + repo = "opentracker"; 25 tag = version; 26 + hash = "sha256-4EBn3BX5tX+yPUjoNFQSls9CwTCd6MpvcBoUKwRndRo="; 27 }; 28 29 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 30 31 nugetDeps = ./deps.json; 32 33 + projectFile = "src/OpenTracker/OpenTracker.csproj"; 34 + executables = [ "OpenTracker" ]; 35 36 nativeBuildInputs = [ 37 autoPatchelfHook ··· 78 license = licenses.mit; 79 maintainers = [ ]; 80 mainProgram = "OpenTracker"; 81 + platforms = [ "x86_64-linux" ]; 82 }; 83 }
-14
pkgs/by-name/al/alttpr-opentracker/remove-project.patch
··· 1 - diff --git a/OpenTracker.sln b/OpenTracker.sln 2 - index 0a8c438..77124e1 100644 3 - --- a/OpenTracker.sln 4 - +++ b/OpenTracker.sln 5 - @@ -4,9 +4,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 6 - VisualStudioVersion = 16.0.29806.167 7 - MinimumVisualStudioVersion = 10.0.40219.1 8 - Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker", "OpenTracker\OpenTracker.csproj", "{9D32A24F-7FF0-4632-B663-5AD2D64A6C87}" 9 - - ProjectSection(ProjectDependencies) = postProject 10 - - {732A9A56-32B4-4149-B3A5-F2A4F48293D3} = {732A9A56-32B4-4149-B3A5-F2A4F48293D3} 11 - - EndProjectSection 12 - EndProject 13 - Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker.Models", "OpenTracker.Models\OpenTracker.Models.csproj", "{5DB05A1F-56E3-4035-8898-5CFB22DB3568}" 14 - EndProject
···
+31 -71
pkgs/by-name/am/am2rlauncher/deps.json
··· 2 { 3 "pname": "AtkSharp", 4 "version": "3.24.24.34", 5 - "sha256": "1jn1vgi9xm0jp7769k6sbdi8d273kigjrsh93i6s4c03hqxv7cqs" 6 }, 7 { 8 "pname": "CairoSharp", 9 "version": "3.24.24.34", 10 - "sha256": "0pydn1k0cam1gclg9sc1sbnmbyzh28qlc5qanyxcylwghink3kgz" 11 }, 12 { 13 "pname": "Eto.Forms", 14 "version": "2.7.1", 15 - "sha256": "1hzbdnmn5znycfi0mvqa5k5mz9gasy58qzwa7fjmlkwj8ab87l9r" 16 }, 17 { 18 "pname": "Eto.Platform.Gtk", 19 "version": "2.7.1", 20 - "sha256": "09iz85s728jy5qg7y30qvqw5rpsr3yxffrchk1avryk87ky1ysys" 21 }, 22 { 23 "pname": "GdkSharp", 24 "version": "3.24.24.34", 25 - "sha256": "0r0x0yib7chwsyrbpvicrfwldwqx5lyqq4p86zaxpmzd6zdaj0x5" 26 }, 27 { 28 "pname": "GioSharp", 29 "version": "3.24.24.34", 30 - "sha256": "02hxvgjd4w9jpzbkk7qf9q9bkvyp5hfzwxfqp10vg5lpl9yl3xpx" 31 }, 32 { 33 "pname": "GLibSharp", 34 "version": "3.24.24.34", 35 - "sha256": "0kvp033fgdwc8p2abfp5z9pzq66cvwbnjfvr4v4bkpy5s5h181kq" 36 }, 37 { 38 "pname": "GtkSharp", 39 "version": "3.24.24.34", 40 - "sha256": "0028hzmmqyfx87qqmaf9cgb5psn7gkbmqvixcid67x1d6mzxjicb" 41 }, 42 { 43 "pname": "LibGit2Sharp", 44 "version": "0.27.0", 45 - "sha256": "0n8crafpp4jq74km45wlm3jm0h96ggvqxy26wrz55azgjpk6p1gz" 46 }, 47 { 48 "pname": "LibGit2Sharp.NativeBinaries", 49 "version": "2.0.319", 50 - "sha256": "0xm6np8y182v5246imnkw1fj2sx8x2nl3568kkm3razcgb0y5xlf" 51 }, 52 { 53 "pname": "log4net", 54 "version": "2.0.15", 55 - "sha256": "1iq1rd0z0m15ln247jjrimj3avq50vh6njvw4x158r5v6nz093nb" 56 }, 57 { 58 "pname": "Microsoft.NETCore.Platforms", 59 - "version": "1.1.0", 60 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 61 }, 62 { 63 "pname": "Microsoft.NETCore.Platforms", 64 "version": "5.0.0", 65 - "sha256": "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc" 66 }, 67 { 68 "pname": "Microsoft.Win32.Registry", 69 "version": "5.0.0", 70 - "sha256": "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n" 71 }, 72 { 73 "pname": "Microsoft.Win32.SystemEvents", 74 "version": "6.0.0", 75 - "sha256": "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p" 76 - }, 77 - { 78 - "pname": "NETStandard.Library", 79 - "version": "2.0.3", 80 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 81 }, 82 { 83 "pname": "PangoSharp", 84 "version": "3.24.24.34", 85 - "sha256": "1r0h14cklglfpv1lhv93cxmzi2w7d5s03gzpq3j5dmrz43flg9zw" 86 - }, 87 - { 88 - "pname": "System.Buffers", 89 - "version": "4.4.0", 90 - "sha256": "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19" 91 - }, 92 - { 93 - "pname": "System.Buffers", 94 - "version": "4.5.1", 95 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 96 }, 97 { 98 "pname": "System.ComponentModel.Annotations", 99 "version": "5.0.0", 100 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 101 }, 102 { 103 "pname": "System.Configuration.ConfigurationManager", 104 "version": "4.5.0", 105 - "sha256": "1frpy24mn6q7hgwayj98kkx89z861f5dmia4j6zc0a2ydgx8x02c" 106 }, 107 { 108 "pname": "System.Configuration.ConfigurationManager", 109 "version": "6.0.0", 110 - "sha256": "0sqapr697jbb4ljkq46msg0xx1qpmc31ivva6llyz2wzq3mpmxbw" 111 }, 112 { 113 "pname": "System.Drawing.Common", 114 "version": "6.0.0", 115 - "sha256": "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz" 116 - }, 117 - { 118 - "pname": "System.Memory", 119 - "version": "4.5.0", 120 - "sha256": "1layqpcx1q4l805fdnj2dfqp6ncx2z42ca06rgsr6ikq4jjgbv30" 121 - }, 122 - { 123 - "pname": "System.Memory", 124 - "version": "4.5.4", 125 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 126 - }, 127 - { 128 - "pname": "System.Numerics.Vectors", 129 - "version": "4.4.0", 130 - "sha256": "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba" 131 - }, 132 - { 133 - "pname": "System.Runtime.CompilerServices.Unsafe", 134 - "version": "4.5.0", 135 - "sha256": "17labczwqk3jng3kkky73m0jhi8wc21vbl7cz5c0hj2p1dswin43" 136 - }, 137 - { 138 - "pname": "System.Runtime.CompilerServices.Unsafe", 139 - "version": "4.5.3", 140 - "sha256": "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln" 141 }, 142 { 143 "pname": "System.Security.AccessControl", 144 "version": "4.5.0", 145 - "sha256": "1wvwanz33fzzbnd2jalar0p0z3x0ba53vzx1kazlskp7pwyhlnq0" 146 }, 147 { 148 "pname": "System.Security.AccessControl", 149 "version": "5.0.0", 150 - "sha256": "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r" 151 }, 152 { 153 "pname": "System.Security.AccessControl", 154 "version": "6.0.0", 155 - "sha256": "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58" 156 }, 157 { 158 "pname": "System.Security.Cryptography.ProtectedData", 159 "version": "4.5.0", 160 - "sha256": "11qlc8q6b7xlspayv07718ibzvlj6ddqqxkvcbxv5b24d5kzbrb7" 161 }, 162 { 163 "pname": "System.Security.Cryptography.ProtectedData", 164 "version": "6.0.0", 165 - "sha256": "05kd3a8w7658hjxq9vvszxip30a479fjmfq4bq1r95nrsvs4hbss" 166 }, 167 { 168 "pname": "System.Security.Permissions", 169 "version": "4.5.0", 170 - "sha256": "192ww5rm3c9mirxgl1nzyrwd18am3izqls0hzm0fvcdjl5grvbhm" 171 }, 172 { 173 "pname": "System.Security.Permissions", 174 "version": "6.0.0", 175 - "sha256": "0jsl4xdrkqi11iwmisi1r2f2qn5pbvl79mzq877gndw6ans2zhzw" 176 }, 177 { 178 "pname": "System.Security.Principal.Windows", 179 "version": "4.5.0", 180 - "sha256": "0rmj89wsl5yzwh0kqjgx45vzf694v9p92r4x4q6yxldk1cv1hi86" 181 }, 182 { 183 "pname": "System.Security.Principal.Windows", 184 "version": "5.0.0", 185 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 186 }, 187 { 188 "pname": "System.Windows.Extensions", 189 "version": "6.0.0", 190 - "sha256": "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip" 191 } 192 ]
··· 2 { 3 "pname": "AtkSharp", 4 "version": "3.24.24.34", 5 + "hash": "sha256-GrOzO4YDMKJNHAnqLF+c44iGYlvazGTOuRLUnuLbwco=" 6 }, 7 { 8 "pname": "CairoSharp", 9 "version": "3.24.24.34", 10 + "hash": "sha256-/80xbYSPU8+6twoXRjES8PtV7dKB6fQoe6EqBmawzV8=" 11 }, 12 { 13 "pname": "Eto.Forms", 14 "version": "2.7.1", 15 + "hash": "sha256-OdGDlkKST1qlO4p/jIrX6qVfyywK7wqiY97+Yqtt68M=" 16 }, 17 { 18 "pname": "Eto.Platform.Gtk", 19 "version": "2.7.1", 20 + "hash": "sha256-2msf/Dxo+rxVmJBl57ofWd9cON4YDH8eLl4icXRBPyY=" 21 }, 22 { 23 "pname": "GdkSharp", 24 "version": "3.24.24.34", 25 + "hash": "sha256-pQOp2jft19vVN+gSjD0tHfNGucss7ruy1xyys6IHHWQ=" 26 }, 27 { 28 "pname": "GioSharp", 29 "version": "3.24.24.34", 30 + "hash": "sha256-/fZBfaKXlrdBuNh1/h0s1++5Ek4OnznXvzJx0uTbHQo=" 31 }, 32 { 33 "pname": "GLibSharp", 34 "version": "3.24.24.34", 35 + "hash": "sha256-eAYUYNHF37nIJnk7aRffzBj8b/rluqXERYy358YAd08=" 36 }, 37 { 38 "pname": "GtkSharp", 39 "version": "3.24.24.34", 40 + "hash": "sha256-i0XZfzUt9GNaZD1uXNd8x+pb1mPJqYrxQd15XOuHSAA=" 41 }, 42 { 43 "pname": "LibGit2Sharp", 44 "version": "0.27.0", 45 + "hash": "sha256-/4Vr5pXvq1J+5kb4jvd7JkFQ5aiUF1InOViSe53KDFk=" 46 }, 47 { 48 "pname": "LibGit2Sharp.NativeBinaries", 49 "version": "2.0.319", 50 + "hash": "sha256-jvbiwXrsqzzqnMiUQa3oqGshXeDT1miIKFug4NG1pnY=" 51 }, 52 { 53 "pname": "log4net", 54 "version": "2.0.15", 55 + "hash": "sha256-y44EvjW7ZFRCJ3xLa+AGBW81ZI1ZykOEpSVU8EHLAcc=" 56 }, 57 { 58 "pname": "Microsoft.NETCore.Platforms", 59 + "version": "2.0.0", 60 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 61 }, 62 { 63 "pname": "Microsoft.NETCore.Platforms", 64 "version": "5.0.0", 65 + "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 66 }, 67 { 68 "pname": "Microsoft.Win32.Registry", 69 "version": "5.0.0", 70 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 71 }, 72 { 73 "pname": "Microsoft.Win32.SystemEvents", 74 "version": "6.0.0", 75 + "hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA=" 76 }, 77 { 78 "pname": "PangoSharp", 79 "version": "3.24.24.34", 80 + "hash": "sha256-/KdH3SA/11bkwPe/AXRph4v4a2cjbUjDvo4+OhkJEOQ=" 81 }, 82 { 83 "pname": "System.ComponentModel.Annotations", 84 "version": "5.0.0", 85 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 86 }, 87 { 88 "pname": "System.Configuration.ConfigurationManager", 89 "version": "4.5.0", 90 + "hash": "sha256-TICO+mteKMC+kUTF2ooLBv2E+pwoSa/4gwcbW4nwN7s=" 91 }, 92 { 93 "pname": "System.Configuration.ConfigurationManager", 94 "version": "6.0.0", 95 + "hash": "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms=" 96 }, 97 { 98 "pname": "System.Drawing.Common", 99 "version": "6.0.0", 100 + "hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo=" 101 }, 102 { 103 "pname": "System.Security.AccessControl", 104 "version": "4.5.0", 105 + "hash": "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM=" 106 }, 107 { 108 "pname": "System.Security.AccessControl", 109 "version": "5.0.0", 110 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 111 }, 112 { 113 "pname": "System.Security.AccessControl", 114 "version": "6.0.0", 115 + "hash": "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg=" 116 }, 117 { 118 "pname": "System.Security.Cryptography.ProtectedData", 119 "version": "4.5.0", 120 + "hash": "sha256-Z+X1Z2lErLL7Ynt2jFszku6/IgrngO3V1bSfZTBiFIc=" 121 }, 122 { 123 "pname": "System.Security.Cryptography.ProtectedData", 124 "version": "6.0.0", 125 + "hash": "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY=" 126 }, 127 { 128 "pname": "System.Security.Permissions", 129 "version": "4.5.0", 130 + "hash": "sha256-Fa6dX6Gyse1A/RBoin8cVaHQePbfBvp6jjWxUXPhXKQ=" 131 }, 132 { 133 "pname": "System.Security.Permissions", 134 "version": "6.0.0", 135 + "hash": "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs=" 136 }, 137 { 138 "pname": "System.Security.Principal.Windows", 139 "version": "4.5.0", 140 + "hash": "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY=" 141 }, 142 { 143 "pname": "System.Security.Principal.Windows", 144 "version": "5.0.0", 145 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 146 }, 147 { 148 "pname": "System.Windows.Extensions", 149 "version": "6.0.0", 150 + "hash": "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM=" 151 } 152 ]
+52
pkgs/by-name/am/am2rlauncher/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj b/AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj 2 + index e5e6191..ab9f228 100644 3 + --- a/AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj 4 + +++ b/AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj 5 + @@ -2,7 +2,7 @@ 6 + 7 + <PropertyGroup> 8 + <OutputType>WinExe</OutputType> 9 + - <TargetFramework>net6.0</TargetFramework> 10 + + <TargetFramework>net8.0</TargetFramework> 11 + <ApplicationIcon>icon64.ico</ApplicationIcon> 12 + <RollForward>LatestMajor</RollForward> 13 + <LangVersion>latest</LangVersion> 14 + diff --git a/AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj b/AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj 15 + index 2af5688..a91bb25 100644 16 + --- a/AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj 17 + +++ b/AM2RLauncher/AM2RLauncher.Mac/AM2RLauncher.Mac.csproj 18 + @@ -2,7 +2,7 @@ 19 + 20 + <PropertyGroup> 21 + <OutputType>Exe</OutputType> 22 + - <TargetFramework>net6.0-macos</TargetFramework> 23 + + <TargetFramework>net8.0-macos</TargetFramework> 24 + <RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers> 25 + <SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion> 26 + <RollForward>LatestMajor</RollForward> 27 + diff --git a/AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj b/AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj 28 + index be49446..34a842f 100644 29 + --- a/AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj 30 + +++ b/AM2RLauncher/AM2RLauncher/AM2RLauncher.csproj 31 + @@ -1,7 +1,7 @@ 32 + <Project Sdk="Microsoft.NET.Sdk"> 33 + 34 + <PropertyGroup> 35 + - <TargetFramework>netstandard2.0</TargetFramework> 36 + + <TargetFramework>net8.0</TargetFramework> 37 + <LangVersion>latest</LangVersion> 38 + <ApplicationIcon>Resources\LauncherIcon.ico</ApplicationIcon> 39 + <Authors>Lojemiru, Miepee</Authors> 40 + diff --git a/AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj b/AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj 41 + index 673ab7a..da3a019 100644 42 + --- a/AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj 43 + +++ b/AM2RLauncher/AM2RLauncherLib/AM2RLauncherLib.csproj 44 + @@ -1,7 +1,7 @@ 45 + <Project Sdk="Microsoft.NET.Sdk"> 46 + 47 + <PropertyGroup> 48 + - <TargetFramework>netstandard2.0</TargetFramework> 49 + + <TargetFramework>net8.0</TargetFramework> 50 + <LangVersion>default</LangVersion> 51 + <Configurations>Debug;Release</Configurations> 52 + <Platforms>AnyCPU</Platforms>
+52 -29
pkgs/by-name/am/am2rlauncher/package.nix
··· 1 - { lib 2 - , buildDotnetModule 3 - , writeShellScript 4 - , glibc 5 - , gtk3 6 - , libappindicator 7 - , webkitgtk_4_0 8 - , e2fsprogs 9 - , libnotify 10 - , libgit2 11 - , openssl 12 - , xdelta 13 - , file 14 - , openjdk 15 - , patchelf 16 - , fetchFromGitHub 17 - , buildFHSEnv 18 - , glib-networking 19 - , wrapGAppsHook3 20 - , gsettings-desktop-schemas 21 - , dotnetCorePackages 22 }: 23 let 24 am2r-run = buildFHSEnv { ··· 26 27 multiArch = true; 28 29 - multiPkgs = pkgs: with pkgs; [ 30 (lib.getLib stdenv.cc.cc) 31 xorg.libX11 32 xorg.libXext ··· 55 hash = "sha256-/nHqo8jh3sOUngbpqdfiQjUWO/8Uzpc5jtW7Ep4q6Wg="; 56 }; 57 58 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 59 projectFile = "AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj"; 60 61 nugetDeps = ./deps.json; ··· 74 75 nativeBuildInputs = [ wrapGAppsHook3 ]; 76 77 - buildInputs = [ gtk3 gsettings-desktop-schemas glib-networking ]; 78 79 - patches = [ ./am2r-run-binary.patch ]; 80 81 - dotnetFlags = [ ''-p:DefineConstants="NOAPPIMAGE;NOAUTOUPDATE;PATCHOPENSSL"'' ]; 82 83 - postFixup = '' 84 - wrapProgram $out/bin/AM2RLauncher.Gtk \ 85 - --prefix PATH : ${lib.makeBinPath [ am2r-run xdelta file openjdk patchelf ]} \ 86 87 mkdir -p $out/share/icons 88 install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.png $out/share/icons/AM2RLauncher.png 89 install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.desktop $out/share/applications/AM2RLauncher.desktop
··· 1 + { 2 + lib, 3 + buildDotnetModule, 4 + writeShellScript, 5 + glibc, 6 + gtk3, 7 + libappindicator, 8 + webkitgtk_4_0, 9 + e2fsprogs, 10 + libnotify, 11 + libgit2, 12 + openssl, 13 + xdelta, 14 + file, 15 + openjdk, 16 + patchelf, 17 + fetchFromGitHub, 18 + buildFHSEnv, 19 + glib-networking, 20 + wrapGAppsHook3, 21 + gsettings-desktop-schemas, 22 + dotnetCorePackages, 23 }: 24 let 25 am2r-run = buildFHSEnv { ··· 27 28 multiArch = true; 29 30 + multiPkgs = 31 + pkgs: with pkgs; [ 32 (lib.getLib stdenv.cc.cc) 33 xorg.libX11 34 xorg.libXext ··· 57 hash = "sha256-/nHqo8jh3sOUngbpqdfiQjUWO/8Uzpc5jtW7Ep4q6Wg="; 58 }; 59 60 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 61 projectFile = "AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj"; 62 63 nugetDeps = ./deps.json; ··· 76 77 nativeBuildInputs = [ wrapGAppsHook3 ]; 78 79 + buildInputs = [ 80 + gtk3 81 + gsettings-desktop-schemas 82 + glib-networking 83 + ]; 84 85 + patches = [ 86 + ./am2r-run-binary.patch 87 + ./dotnet-8-upgrade.patch 88 + ]; 89 90 + dotnetFlags = [ 91 + ''-p:DefineConstants="NOAPPIMAGE;NOAUTOUPDATE;PATCHOPENSSL"'' 92 + ]; 93 94 + makeWrapperArgs = [ 95 + "--prefix" 96 + "PATH" 97 + ":" 98 + (lib.escapeShellArg ( 99 + lib.makeBinPath [ 100 + am2r-run 101 + xdelta 102 + file 103 + openjdk 104 + patchelf 105 + ] 106 + )) 107 + ]; 108 109 + postFixup = '' 110 mkdir -p $out/share/icons 111 install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.png $out/share/icons/AM2RLauncher.png 112 install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.desktop $out/share/applications/AM2RLauncher.desktop
+42
pkgs/by-name/ar/arphic-ukai/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + mkfontdir, 6 + mkfontscale, 7 + }: 8 + 9 + stdenvNoCC.mkDerivation rec { 10 + pname = "arphic-ukai"; 11 + version = "0.2.20080216.2"; 12 + 13 + src = fetchurl { 14 + url = "mirror://ubuntu/pool/main/f/fonts-${pname}/fonts-${pname}_${version}.orig.tar.bz2"; 15 + hash = "sha256-tJaNc1GfT4dH6FVI+4XSG2Zdob8bqQCnxJmXbmqK49I="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + mkfontscale 20 + mkfontdir 21 + ]; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + 26 + install -D -v ukai.ttc $out/share/fonts/truetype/arphic-ukai.ttc 27 + cd $out/share/fonts 28 + mkfontdir 29 + mkfontscale 30 + 31 + runHook postInstall 32 + ''; 33 + 34 + meta = with lib; { 35 + description = "CJK Unicode font Kai style"; 36 + homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; 37 + 38 + license = licenses.arphicpl; 39 + maintainers = [ maintainers.changlinli ]; 40 + platforms = platforms.all; 41 + }; 42 + }
+42
pkgs/by-name/ar/arphic-uming/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + mkfontdir, 6 + mkfontscale, 7 + }: 8 + 9 + stdenvNoCC.mkDerivation rec { 10 + pname = "arphic-uming"; 11 + version = "0.2.20080216.2"; 12 + 13 + src = fetchurl { 14 + url = "mirror://ubuntu/pool/main/f/fonts-${pname}/fonts-${pname}_${version}.orig.tar.bz2"; 15 + hash = "sha256-48GeBOp6VltKz/bx5CSAhNLhB1LjBb991sdugIYNwds="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + mkfontscale 20 + mkfontdir 21 + ]; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + 26 + install -D -v uming.ttc $out/share/fonts/truetype/arphic-uming.ttc 27 + cd $out/share/fonts 28 + mkfontdir 29 + mkfontscale 30 + 31 + runHook postInstall 32 + ''; 33 + 34 + meta = with lib; { 35 + description = "CJK Unicode font Ming style"; 36 + homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; 37 + 38 + license = licenses.arphicpl; 39 + maintainers = [ maintainers.changlinli ]; 40 + platforms = platforms.all; 41 + }; 42 + }
+6 -1
pkgs/by-name/bi/bitbox/package.nix
··· 81 meta = { 82 description = "Companion app for the BitBox02 hardware wallet"; 83 homepage = "https://bitbox.swiss/app/"; 84 license = lib.licenses.asl20; 85 mainProgram = "bitbox"; 86 - maintainers = [ lib.maintainers.tensor5 ]; 87 platforms = [ "x86_64-linux" ]; 88 }; 89 }
··· 81 meta = { 82 description = "Companion app for the BitBox02 hardware wallet"; 83 homepage = "https://bitbox.swiss/app/"; 84 + downloadPage = "https://github.com/BitBoxSwiss/bitbox-wallet-app"; 85 + changelog = "https://github.com/BitBoxSwiss/bitbox-wallet-app/blob/master/CHANGELOG.md#${ 86 + builtins.replaceStrings [ "." ] [ "" ] version 87 + }"; 88 license = lib.licenses.asl20; 89 + maintainers = [ lib.maintainers.tensor5 ]; 90 mainProgram = "bitbox"; 91 + sourceProvenance = [ lib.sourceTypes.fromSource ]; 92 platforms = [ "x86_64-linux" ]; 93 }; 94 }
+3 -3
pkgs/by-name/ca/cargo-llvm-lines/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-llvm-lines"; 9 - version = "0.4.41"; 10 11 src = fetchFromGitHub { 12 owner = "dtolnay"; 13 repo = pname; 14 rev = version; 15 - hash = "sha256-ewxdjvo9WFVX4484uuEkerzcJ4fOy2Sm90tiPGNbrV0="; 16 }; 17 18 - cargoHash = "sha256-9jG5VgIlHYv1IFSjPy34dNk8RHjhgXi6daI+R0jgxMc="; 19 20 meta = with lib; { 21 description = "Count the number of lines of LLVM IR across all instantiations of a generic function";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "cargo-llvm-lines"; 9 + version = "0.4.42"; 10 11 src = fetchFromGitHub { 12 owner = "dtolnay"; 13 repo = pname; 14 rev = version; 15 + hash = "sha256-qKdxnISussiyp1ylahS7qOdMfOGwJnlbWrgEHf/L2y0="; 16 }; 17 18 + cargoHash = "sha256-IDFCzTAlC/ZYGwUSmmxyRmZy5belxvyfeWpTCPzJQ6o="; 19 20 meta = with lib; { 21 description = "Count the number of lines of LLVM IR across all instantiations of a generic function";
+3 -3
pkgs/by-name/ca/cargo-tally/package.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "cargo-tally"; 11 - version = "1.0.56"; 12 13 src = fetchCrate { 14 inherit pname version; 15 - hash = "sha256-IB1OoS9pdFHFewLfeu1cVCffLGtPvCJlVkIBZxtBkm4="; 16 }; 17 18 - cargoHash = "sha256-uPlilomHib10/v2HKBjU/ln0B4QkKpFJPpKf37RO7Oo="; 19 20 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 21 with darwin.apple_sdk_11_0.frameworks;
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "cargo-tally"; 11 + version = "1.0.57"; 12 13 src = fetchCrate { 14 inherit pname version; 15 + hash = "sha256-0f+23kQZzmUeAjettZ3iRTATiv73sGpI13TzZFTU150="; 16 }; 17 18 + cargoHash = "sha256-o4S13uvKYLUUmx6tHQpCm7U9AOtmg8P60NxdNsXy9Fc="; 19 20 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 21 with darwin.apple_sdk_11_0.frameworks;
+2 -2
pkgs/by-name/ci/civo/package.nix
··· 7 8 buildGoModule rec { 9 pname = "civo"; 10 - version = "1.1.92"; 11 12 src = fetchFromGitHub { 13 owner = "civo"; 14 repo = "cli"; 15 rev = "v${version}"; 16 - hash = "sha256-nsH/6OVvCOU4f9UZNFOm9AtyN9L4tXB285580g3SsxE="; 17 }; 18 19 vendorHash = "sha256-G3ijLi3ZbURVHkjUwylFWwxRyxroppVUFJveKw5qLq8=";
··· 7 8 buildGoModule rec { 9 pname = "civo"; 10 + version = "1.1.93"; 11 12 src = fetchFromGitHub { 13 owner = "civo"; 14 repo = "cli"; 15 rev = "v${version}"; 16 + hash = "sha256-FX2hnqYqvPoD6Fn1363XrK4n0tMd9xkWlIcyIhDJDW4="; 17 }; 18 19 vendorHash = "sha256-G3ijLi3ZbURVHkjUwylFWwxRyxroppVUFJveKw5qLq8=";
+10 -3
pkgs/by-name/da/dafny/package.nix
··· 65 # frameworks, you must specify the framework for the published 66 # application." 67 substituteInPlace Source/DafnyRuntime/DafnyRuntime.csproj \ 68 - --replace-warn TargetFrameworks TargetFramework \ 69 - --replace-warn "netstandard2.0;net452" net6.0 70 ''; 71 72 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 73 nativeBuildInputs = [ jdk11 ]; 74 nugetDeps = ./deps.json; 75
··· 65 # frameworks, you must specify the framework for the published 66 # application." 67 substituteInPlace Source/DafnyRuntime/DafnyRuntime.csproj \ 68 + --replace-fail TargetFrameworks TargetFramework \ 69 + --replace-fail "netstandard2.0;net452" net8.0 70 + 71 + for f in Source/**/*.csproj ; do 72 + [[ "$f" == "Source/DafnyRuntime/DafnyRuntime.csproj" ]] && continue; 73 + 74 + substituteInPlace $f \ 75 + --replace-fail net6.0 net8.0 76 + done 77 ''; 78 79 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 80 nativeBuildInputs = [ jdk11 ]; 81 nugetDeps = ./deps.json; 82
+49
pkgs/by-name/ea/easel/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + autoreconfHook, 6 + perl, 7 + python3, 8 + versionCheckHook, 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "easel"; 13 + version = "0.49"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "EddyRivasLab"; 17 + repo = "easel"; 18 + tag = "easel-${finalAttrs.version}"; 19 + hash = "sha256-NSKy7ptNYR0K/VFJNv+5TGWdC1ZM4Y5i/3L+3Coj/sg="; 20 + }; 21 + 22 + nativeBuildInputs = [ autoreconfHook ]; 23 + 24 + enableParallelBuilding = true; 25 + 26 + doCheck = true; 27 + 28 + nativeCheckInputs = [ 29 + perl 30 + python3 31 + ]; 32 + 33 + preCheck = '' 34 + patchShebangs devkit/sqc 35 + ''; 36 + 37 + doInstallCheck = true; 38 + 39 + nativeInstallCheckInputs = [ versionCheckHook ]; 40 + 41 + meta = { 42 + description = "Sequence analysis library used by Eddy/Rivas lab code"; 43 + homepage = "https://github.com/EddyRivasLab/easel"; 44 + license = lib.licenses.bsd2; 45 + mainProgram = "easel"; 46 + maintainers = with lib.maintainers; [ natsukium ]; 47 + platforms = lib.platforms.unix; 48 + }; 49 + })
+9 -9
pkgs/by-name/em/empty-epsilon/package.nix
··· 15 16 let 17 version = { 18 - seriousproton = "2024.08.09"; 19 - emptyepsilon = "2024.08.09"; 20 - basis-universal = "v1_15_update2"; 21 }; 22 23 basis-universal = fetchFromGitHub { 24 owner = "BinomialLLC"; 25 repo = "basis_universal"; 26 - rev = version.basis-universal; 27 - hash = "sha256-2snzq/SnhWHIgSbUUgh24B6tka7EfkGO+nwKEObRkU4="; 28 }; 29 30 serious-proton = stdenv.mkDerivation { ··· 34 src = fetchFromGitHub { 35 owner = "daid"; 36 repo = "SeriousProton"; 37 - rev = "EE-${version.seriousproton}"; 38 - hash = "sha256-B7BUe5rtN/eABJwkuSyn+h1lIHuV/tZUNcGXTyaWIr4="; 39 }; 40 41 nativeBuildInputs = [ cmake ]; ··· 69 src = fetchFromGitHub { 70 owner = "daid"; 71 repo = "EmptyEpsilon"; 72 - rev = "EE-${version.emptyepsilon}"; 73 - hash = "sha256-DxaasUyJa8n0ha8RqAfEnqCVELs5Or0zvIOgcK75TnU="; 74 }; 75 76 nativeBuildInputs = [ cmake ];
··· 15 16 let 17 version = { 18 + seriousproton = "2024.12.08"; 19 + emptyepsilon = "2024.12.08"; 20 + basis-universal = "1.15_final"; 21 }; 22 23 basis-universal = fetchFromGitHub { 24 owner = "BinomialLLC"; 25 repo = "basis_universal"; 26 + tag = version.basis-universal; 27 + hash = "sha256-pKvfVvdbPIdzdSOklicThS7xwt4i3/21bE6wg9f8kHY="; 28 }; 29 30 serious-proton = stdenv.mkDerivation { ··· 34 src = fetchFromGitHub { 35 owner = "daid"; 36 repo = "SeriousProton"; 37 + tag = "EE-${version.seriousproton}"; 38 + hash = "sha256-k1YCB7EJIL+kdlHEU4cJjmLZZAZyxIPU0XlSn2t4C90="; 39 }; 40 41 nativeBuildInputs = [ cmake ]; ··· 69 src = fetchFromGitHub { 70 owner = "daid"; 71 repo = "EmptyEpsilon"; 72 + tag = "EE-${version.emptyepsilon}"; 73 + hash = "sha256-JsHFwbt4VGsgaZz9uxEmwzZGfkYTNsIZTKkpvCCmI48="; 74 }; 75 76 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/er/erofs-utils/package.nix
··· 17 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "erofs-utils"; 20 - version = "1.8.3"; 21 outputs = [ 22 "out" 23 "man" ··· 25 26 src = fetchurl { 27 url = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${finalAttrs.version}.tar.gz"; 28 - hash = "sha256-PFzANgPqCLqa5eBCDurqX/F+0p4igGhTEDVsvyUwToU="; 29 }; 30 31 nativeBuildInputs = [
··· 17 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "erofs-utils"; 20 + version = "1.8.4"; 21 outputs = [ 22 "out" 23 "man" ··· 25 26 src = fetchurl { 27 url = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${finalAttrs.version}.tar.gz"; 28 + hash = "sha256-eRWHqgdLufn6IYx2LMH2CwFeL1G8ss6R9oLwQ4VqtJQ="; 29 }; 30 31 nativeBuildInputs = [
+54
pkgs/by-name/fi/firebase-tools/001-override-nan.patch
···
··· 1 + diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json 2 + index da429c128..9c69ec8cb 100644 3 + --- a/npm-shrinkwrap.json 4 + +++ b/npm-shrinkwrap.json 5 + @@ -14637,9 +14637,10 @@ 6 + } 7 + }, 8 + "node_modules/nan": { 9 + - "version": "2.17.0", 10 + - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", 11 + - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", 12 + + "version": "2.22.0", 13 + + "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz", 14 + + "integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==", 15 + + "license": "MIT", 16 + "optional": true 17 + }, 18 + "node_modules/nanoid": { 19 + @@ -31852,9 +31853,9 @@ 20 + } 21 + }, 22 + "nan": { 23 + - "version": "2.17.0", 24 + - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", 25 + - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", 26 + + "version": "2.22.0", 27 + + "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz", 28 + + "integrity": "sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==", 29 + "optional": true 30 + }, 31 + "nanoid": { 32 + @@ -33672,7 +33673,7 @@ 33 + "optional": true, 34 + "requires": { 35 + "install-artifact-from-github": "^1.3.1", 36 + - "nan": "^2.17.0", 37 + + "nan": "^2.22.0", 38 + "node-gyp": "^9.3.0" 39 + } 40 + }, 41 + diff --git a/package.json b/package.json 42 + index a4284d841..90a0524f2 100644 43 + --- a/package.json 44 + +++ b/package.json 45 + @@ -98,6 +98,9 @@ 46 + "src/test/**/*" 47 + ] 48 + }, 49 + + "overrides" : { 50 + + "nan": "^2.22.0" 51 + + }, 52 + "dependencies": { 53 + "@electric-sql/pglite": "^0.2.0", 54 + "@google-cloud/cloud-sql-connector": "^1.3.3",
+13 -2
pkgs/by-name/fi/firebase-tools/package.nix
··· 5 fetchFromGitHub, 6 python3, 7 xcbuild, 8 }: 9 - 10 let 11 version = "13.29.1"; 12 src = fetchFromGitHub { ··· 20 pname = "firebase-tools"; 21 inherit version src; 22 23 - npmDepsHash = "sha256-3+XeXK3VGIs4Foi9iW9Kho/Y0JsTQZ7p+582MPgdH1A="; 24 25 postPatch = '' 26 ln -s npm-shrinkwrap.json package-lock.json
··· 5 fetchFromGitHub, 6 python3, 7 xcbuild, 8 + fetchpatch, 9 }: 10 let 11 version = "13.29.1"; 12 src = fetchFromGitHub { ··· 20 pname = "firebase-tools"; 21 inherit version src; 22 23 + npmDepsHash = "sha256-lQmoemIxzy2biu80UTR2eA+KJBeXWPh0xZRs/1of0eo="; 24 + 25 + patches = [ 26 + # Use modern version of `ajv` instead of the four year old default in 13.29.1 27 + (fetchpatch { 28 + name = "bump-ajv.patch"; 29 + url = "https://github.com/firebase/firebase-tools/commit/b684155d827e7d1e8390e22511c0e1b5c46812ef.patch"; 30 + hash = "sha256-yv2AknT85Eyurc1ZFbbF5S9Sj/VEaVnHXBcXI10OWpw="; 31 + }) 32 + # Fix embedded nan version to support node 22 33 + ./001-override-nan.patch 34 + ]; 35 36 postPatch = '' 37 ln -s npm-shrinkwrap.json package-lock.json
+65
pkgs/by-name/fo/formula/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/Src/CommandLine/CommandLine.csproj b/Src/CommandLine/CommandLine.csproj 2 + index 2b6a4fe..5eee8c7 100644 3 + --- a/Src/CommandLine/CommandLine.csproj 4 + +++ b/Src/CommandLine/CommandLine.csproj 5 + @@ -2,7 +2,7 @@ 6 + 7 + <PropertyGroup> 8 + <OutputType>Exe</OutputType> 9 + - <TargetFramework>net6.0</TargetFramework> 10 + + <TargetFramework>net8.0</TargetFramework> 11 + <Platforms>AnyCPU;x64</Platforms> 12 + </PropertyGroup> 13 + 14 + diff --git a/Src/Core/Core.csproj b/Src/Core/Core.csproj 15 + index 8e79a00..db64e3a 100644 16 + --- a/Src/Core/Core.csproj 17 + +++ b/Src/Core/Core.csproj 18 + @@ -2,7 +2,7 @@ 19 + 20 + <PropertyGroup> 21 + <OutputType>Library</OutputType> 22 + - <TargetFramework>net6.0</TargetFramework> 23 + + <TargetFramework>net8.0</TargetFramework> 24 + <ApplicationIcon /> 25 + <StartupObject /> 26 + <Platforms>AnyCPU;x64</Platforms> 27 + diff --git a/Src/Extensions/FormulaCodeGeneratorTask/FormulaCodeGeneratorTaskDotNet.csproj b/Src/Extensions/FormulaCodeGeneratorTask/FormulaCodeGeneratorTaskDotNet.csproj 28 + index daa042d..9290c12 100644 29 + --- a/Src/Extensions/FormulaCodeGeneratorTask/FormulaCodeGeneratorTaskDotNet.csproj 30 + +++ b/Src/Extensions/FormulaCodeGeneratorTask/FormulaCodeGeneratorTaskDotNet.csproj 31 + @@ -2,7 +2,7 @@ 32 + 33 + <PropertyGroup> 34 + <OutputType>Library</OutputType> 35 + - <TargetFramework>net6.0</TargetFramework> 36 + + <TargetFramework>net8.0</TargetFramework> 37 + <Platforms>AnyCPU;x64</Platforms> 38 + </PropertyGroup> 39 + 40 + diff --git a/Src/Kernel/InteractiveKernel/InteractiveKernel.csproj b/Src/Kernel/InteractiveKernel/InteractiveKernel.csproj 41 + index ed3cde5..6c669cd 100644 42 + --- a/Src/Kernel/InteractiveKernel/InteractiveKernel.csproj 43 + +++ b/Src/Kernel/InteractiveKernel/InteractiveKernel.csproj 44 + @@ -17,7 +17,7 @@ 45 + </ItemGroup> 46 + <PropertyGroup> 47 + <OutputType>Exe</OutputType> 48 + - <TargetFramework>net6.0</TargetFramework> 49 + + <TargetFramework>net8.0</TargetFramework> 50 + <Nullable>enable</Nullable> 51 + <ToolCommandName>dotnet-formula</ToolCommandName> 52 + <AssemblyName>Microsoft.Jupyter.VUISIS.Formula</AssemblyName> 53 + diff --git a/Src/Tests/Tests.csproj b/Src/Tests/Tests.csproj 54 + index 8828a49..eebe401 100644 55 + --- a/Src/Tests/Tests.csproj 56 + +++ b/Src/Tests/Tests.csproj 57 + @@ -1,7 +1,7 @@ 58 + <Project Sdk="Microsoft.NET.Sdk"> 59 + 60 + <PropertyGroup> 61 + - <TargetFramework>net6.0</TargetFramework> 62 + + <TargetFramework>net8.0</TargetFramework> 63 + 64 + <IsPackable>false</IsPackable> 65 + </PropertyGroup>
+106 -106
pkgs/by-name/fo/formula/nuget.json
··· 2 { 3 "pname": "Antlr4.Runtime.Standard", 4 "version": "4.7.2", 5 - "sha256": "1pmrpsgqjfj0nzr1zqzk1m2fm0ynd4nklwq3dhvww08yjg5s0586" 6 }, 7 { 8 "pname": "Microsoft.NETCore.Platforms", 9 "version": "1.1.0", 10 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 11 }, 12 { 13 "pname": "Microsoft.NETCore.Targets", 14 "version": "1.1.0", 15 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 16 }, 17 { 18 "pname": "Microsoft.Win32.Primitives", 19 "version": "4.3.0", 20 - "sha256": "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq" 21 }, 22 { 23 "pname": "Microsoft.Z3.x64", 24 "version": "4.8.7", 25 - "sha256": "1wxlw29xm5x8vwji2s7gwk39wb88dkbpg76l9s9gq0hqpghwlmdz" 26 }, 27 { 28 "pname": "NETStandard.Library", 29 "version": "1.6.1", 30 - "sha256": "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8" 31 }, 32 { 33 "pname": "runtime.any.System.Collections", 34 "version": "4.3.0", 35 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 36 }, 37 { 38 "pname": "runtime.any.System.Diagnostics.Tools", 39 "version": "4.3.0", 40 - "sha256": "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk" 41 }, 42 { 43 "pname": "runtime.any.System.Diagnostics.Tracing", 44 "version": "4.3.0", 45 - "sha256": "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn" 46 }, 47 { 48 "pname": "runtime.any.System.Globalization", 49 "version": "4.3.0", 50 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 51 }, 52 { 53 "pname": "runtime.any.System.Globalization.Calendars", 54 "version": "4.3.0", 55 - "sha256": "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201" 56 }, 57 { 58 "pname": "runtime.any.System.IO", 59 "version": "4.3.0", 60 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 61 }, 62 { 63 "pname": "runtime.any.System.Reflection", 64 "version": "4.3.0", 65 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 66 }, 67 { 68 "pname": "runtime.any.System.Reflection.Extensions", 69 "version": "4.3.0", 70 - "sha256": "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33" 71 }, 72 { 73 "pname": "runtime.any.System.Reflection.Primitives", 74 "version": "4.3.0", 75 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 76 }, 77 { 78 "pname": "runtime.any.System.Resources.ResourceManager", 79 "version": "4.3.0", 80 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 81 }, 82 { 83 "pname": "runtime.any.System.Runtime", 84 "version": "4.3.0", 85 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 86 }, 87 { 88 "pname": "runtime.any.System.Runtime.Handles", 89 "version": "4.3.0", 90 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 91 }, 92 { 93 "pname": "runtime.any.System.Runtime.InteropServices", 94 "version": "4.3.0", 95 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 96 }, 97 { 98 "pname": "runtime.any.System.Text.Encoding", 99 "version": "4.3.0", 100 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 101 }, 102 { 103 "pname": "runtime.any.System.Text.Encoding.Extensions", 104 "version": "4.3.0", 105 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 106 }, 107 { 108 "pname": "runtime.any.System.Threading.Tasks", 109 "version": "4.3.0", 110 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 111 }, 112 { 113 "pname": "runtime.any.System.Threading.Timer", 114 "version": "4.3.0", 115 - "sha256": "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086" 116 }, 117 { 118 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 119 "version": "4.3.0", 120 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 121 }, 122 { 123 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 124 "version": "4.3.0", 125 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 126 }, 127 { 128 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 129 "version": "4.3.0", 130 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 131 }, 132 { 133 "pname": "runtime.native.System", 134 "version": "4.3.0", 135 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 136 }, 137 { 138 "pname": "runtime.native.System.IO.Compression", 139 "version": "4.3.0", 140 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 141 }, 142 { 143 "pname": "runtime.native.System.Net.Http", 144 "version": "4.3.0", 145 - "sha256": "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk" 146 }, 147 { 148 "pname": "runtime.native.System.Security.Cryptography.Apple", 149 "version": "4.3.0", 150 - "sha256": "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q" 151 }, 152 { 153 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 154 "version": "4.3.0", 155 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 156 }, 157 { 158 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 159 "version": "4.3.0", 160 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 161 }, 162 { 163 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 164 "version": "4.3.0", 165 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 166 }, 167 { 168 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 169 "version": "4.3.0", 170 - "sha256": "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi" 171 }, 172 { 173 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 174 "version": "4.3.0", 175 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 176 }, 177 { 178 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 179 "version": "4.3.0", 180 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 181 }, 182 { 183 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 184 "version": "4.3.0", 185 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 186 }, 187 { 188 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 189 "version": "4.3.0", 190 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 191 }, 192 { 193 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 194 "version": "4.3.0", 195 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 196 }, 197 { 198 "pname": "runtime.unix.Microsoft.Win32.Primitives", 199 "version": "4.3.0", 200 - "sha256": "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id" 201 }, 202 { 203 "pname": "runtime.unix.System.Console", 204 "version": "4.3.0", 205 - "sha256": "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80" 206 }, 207 { 208 "pname": "runtime.unix.System.Diagnostics.Debug", 209 "version": "4.3.0", 210 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 211 }, 212 { 213 "pname": "runtime.unix.System.IO.FileSystem", 214 "version": "4.3.0", 215 - "sha256": "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix" 216 }, 217 { 218 "pname": "runtime.unix.System.Net.Primitives", 219 "version": "4.3.0", 220 - "sha256": "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4" 221 }, 222 { 223 "pname": "runtime.unix.System.Net.Sockets", 224 "version": "4.3.0", 225 - "sha256": "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12" 226 }, 227 { 228 "pname": "runtime.unix.System.Private.Uri", 229 "version": "4.3.0", 230 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 231 }, 232 { 233 "pname": "runtime.unix.System.Runtime.Extensions", 234 "version": "4.3.0", 235 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 236 }, 237 { 238 "pname": "System.AppContext", 239 "version": "4.3.0", 240 - "sha256": "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya" 241 }, 242 { 243 "pname": "System.Buffers", 244 "version": "4.3.0", 245 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 246 }, 247 { 248 "pname": "System.Collections", 249 "version": "4.3.0", 250 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 251 }, 252 { 253 "pname": "System.Collections.Concurrent", 254 "version": "4.3.0", 255 - "sha256": "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8" 256 }, 257 { 258 "pname": "System.Console", 259 "version": "4.3.0", 260 - "sha256": "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay" 261 }, 262 { 263 "pname": "System.Diagnostics.Debug", 264 "version": "4.3.0", 265 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 266 }, 267 { 268 "pname": "System.Diagnostics.DiagnosticSource", 269 "version": "4.3.0", 270 - "sha256": "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq" 271 }, 272 { 273 "pname": "System.Diagnostics.Tools", 274 "version": "4.3.0", 275 - "sha256": "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1" 276 }, 277 { 278 "pname": "System.Diagnostics.Tracing", 279 "version": "4.3.0", 280 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 281 }, 282 { 283 "pname": "System.Globalization", 284 "version": "4.3.0", 285 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 286 }, 287 { 288 "pname": "System.Globalization.Calendars", 289 "version": "4.3.0", 290 - "sha256": "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq" 291 }, 292 { 293 "pname": "System.Globalization.Extensions", 294 "version": "4.3.0", 295 - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" 296 }, 297 { 298 "pname": "System.IO", 299 "version": "4.3.0", 300 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 301 }, 302 { 303 "pname": "System.IO.Compression", 304 "version": "4.3.0", 305 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 306 }, 307 { 308 "pname": "System.IO.Compression.ZipFile", 309 "version": "4.3.0", 310 - "sha256": "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar" 311 }, 312 { 313 "pname": "System.IO.FileSystem", 314 "version": "4.3.0", 315 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 316 }, 317 { 318 "pname": "System.IO.FileSystem.Primitives", 319 "version": "4.3.0", 320 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 321 }, 322 { 323 "pname": "System.Linq", 324 "version": "4.3.0", 325 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 326 }, 327 { 328 "pname": "System.Linq.Expressions", 329 "version": "4.3.0", 330 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 331 }, 332 { 333 "pname": "System.Net.Http", 334 "version": "4.3.0", 335 - "sha256": "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j" 336 }, 337 { 338 "pname": "System.Net.NameResolution", 339 "version": "4.3.0", 340 - "sha256": "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq" 341 }, 342 { 343 "pname": "System.Net.Primitives", 344 "version": "4.3.0", 345 - "sha256": "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii" 346 }, 347 { 348 "pname": "System.Net.Sockets", 349 "version": "4.3.0", 350 - "sha256": "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla" 351 }, 352 { 353 "pname": "System.ObjectModel", 354 "version": "4.3.0", 355 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 356 }, 357 { 358 "pname": "System.Private.Uri", 359 "version": "4.3.0", 360 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 361 }, 362 { 363 "pname": "System.Reflection", 364 "version": "4.3.0", 365 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 366 }, 367 { 368 "pname": "System.Reflection.Emit", 369 "version": "4.3.0", 370 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 371 }, 372 { 373 "pname": "System.Reflection.Emit.ILGeneration", 374 "version": "4.3.0", 375 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 376 }, 377 { 378 "pname": "System.Reflection.Emit.Lightweight", 379 "version": "4.3.0", 380 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 381 }, 382 { 383 "pname": "System.Reflection.Extensions", 384 "version": "4.3.0", 385 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 386 }, 387 { 388 "pname": "System.Reflection.Primitives", 389 "version": "4.3.0", 390 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 391 }, 392 { 393 "pname": "System.Reflection.TypeExtensions", 394 "version": "4.3.0", 395 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 396 }, 397 { 398 "pname": "System.Resources.ResourceManager", 399 "version": "4.3.0", 400 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 401 }, 402 { 403 "pname": "System.Runtime", 404 "version": "4.3.0", 405 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 406 }, 407 { 408 "pname": "System.Runtime.Extensions", 409 "version": "4.3.0", 410 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 411 }, 412 { 413 "pname": "System.Runtime.Handles", 414 "version": "4.3.0", 415 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 416 }, 417 { 418 "pname": "System.Runtime.InteropServices", 419 "version": "4.3.0", 420 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 421 }, 422 { 423 "pname": "System.Runtime.InteropServices.RuntimeInformation", 424 "version": "4.3.0", 425 - "sha256": "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii" 426 }, 427 { 428 "pname": "System.Runtime.Numerics", 429 "version": "4.3.0", 430 - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" 431 }, 432 { 433 "pname": "System.Security.Claims", 434 "version": "4.3.0", 435 - "sha256": "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn" 436 }, 437 { 438 "pname": "System.Security.Cryptography.Algorithms", 439 "version": "4.3.0", 440 - "sha256": "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml" 441 }, 442 { 443 "pname": "System.Security.Cryptography.Cng", 444 "version": "4.3.0", 445 - "sha256": "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv" 446 }, 447 { 448 "pname": "System.Security.Cryptography.Csp", 449 "version": "4.3.0", 450 - "sha256": "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1" 451 }, 452 { 453 "pname": "System.Security.Cryptography.Encoding", 454 "version": "4.3.0", 455 - "sha256": "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32" 456 }, 457 { 458 "pname": "System.Security.Cryptography.OpenSsl", 459 "version": "4.3.0", 460 - "sha256": "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc" 461 }, 462 { 463 "pname": "System.Security.Cryptography.Primitives", 464 "version": "4.3.0", 465 - "sha256": "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby" 466 }, 467 { 468 "pname": "System.Security.Cryptography.X509Certificates", 469 "version": "4.3.0", 470 - "sha256": "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h" 471 }, 472 { 473 "pname": "System.Security.Principal", 474 "version": "4.3.0", 475 - "sha256": "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf" 476 }, 477 { 478 "pname": "System.Security.Principal.Windows", 479 "version": "4.3.0", 480 - "sha256": "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr" 481 }, 482 { 483 "pname": "System.Text.Encoding", 484 "version": "4.3.0", 485 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 486 }, 487 { 488 "pname": "System.Text.Encoding.Extensions", 489 "version": "4.3.0", 490 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 491 }, 492 { 493 "pname": "System.Text.RegularExpressions", 494 "version": "4.3.0", 495 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 496 }, 497 { 498 "pname": "System.Threading", 499 "version": "4.3.0", 500 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 501 }, 502 { 503 "pname": "System.Threading.Tasks", 504 "version": "4.3.0", 505 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 506 }, 507 { 508 "pname": "System.Threading.Tasks.Extensions", 509 "version": "4.3.0", 510 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 511 }, 512 { 513 "pname": "System.Threading.ThreadPool", 514 "version": "4.3.0", 515 - "sha256": "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1" 516 }, 517 { 518 "pname": "System.Threading.Timer", 519 "version": "4.3.0", 520 - "sha256": "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56" 521 }, 522 { 523 "pname": "System.Xml.ReaderWriter", 524 "version": "4.3.0", 525 - "sha256": "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1" 526 }, 527 { 528 "pname": "System.Xml.XDocument", 529 "version": "4.3.0", 530 - "sha256": "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd" 531 } 532 ]
··· 2 { 3 "pname": "Antlr4.Runtime.Standard", 4 "version": "4.7.2", 5 + "hash": "sha256-BhWgy5MeAc43bANzOi1p1oPqRA3z4x/yt0A6iZ++ud4=" 6 }, 7 { 8 "pname": "Microsoft.NETCore.Platforms", 9 "version": "1.1.0", 10 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 11 }, 12 { 13 "pname": "Microsoft.NETCore.Targets", 14 "version": "1.1.0", 15 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 16 }, 17 { 18 "pname": "Microsoft.Win32.Primitives", 19 "version": "4.3.0", 20 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 21 }, 22 { 23 "pname": "Microsoft.Z3.x64", 24 "version": "4.8.7", 25 + "hash": "sha256-v1XK4bsYAvySTtScd9dsCC2exuTvaBEl36iX2pPgtPM=" 26 }, 27 { 28 "pname": "NETStandard.Library", 29 "version": "1.6.1", 30 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 31 }, 32 { 33 "pname": "runtime.any.System.Collections", 34 "version": "4.3.0", 35 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 36 }, 37 { 38 "pname": "runtime.any.System.Diagnostics.Tools", 39 "version": "4.3.0", 40 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 41 }, 42 { 43 "pname": "runtime.any.System.Diagnostics.Tracing", 44 "version": "4.3.0", 45 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 46 }, 47 { 48 "pname": "runtime.any.System.Globalization", 49 "version": "4.3.0", 50 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 51 }, 52 { 53 "pname": "runtime.any.System.Globalization.Calendars", 54 "version": "4.3.0", 55 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 56 }, 57 { 58 "pname": "runtime.any.System.IO", 59 "version": "4.3.0", 60 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 61 }, 62 { 63 "pname": "runtime.any.System.Reflection", 64 "version": "4.3.0", 65 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 66 }, 67 { 68 "pname": "runtime.any.System.Reflection.Extensions", 69 "version": "4.3.0", 70 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 71 }, 72 { 73 "pname": "runtime.any.System.Reflection.Primitives", 74 "version": "4.3.0", 75 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 76 }, 77 { 78 "pname": "runtime.any.System.Resources.ResourceManager", 79 "version": "4.3.0", 80 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 81 }, 82 { 83 "pname": "runtime.any.System.Runtime", 84 "version": "4.3.0", 85 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 86 }, 87 { 88 "pname": "runtime.any.System.Runtime.Handles", 89 "version": "4.3.0", 90 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 91 }, 92 { 93 "pname": "runtime.any.System.Runtime.InteropServices", 94 "version": "4.3.0", 95 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 96 }, 97 { 98 "pname": "runtime.any.System.Text.Encoding", 99 "version": "4.3.0", 100 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 101 }, 102 { 103 "pname": "runtime.any.System.Text.Encoding.Extensions", 104 "version": "4.3.0", 105 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 106 }, 107 { 108 "pname": "runtime.any.System.Threading.Tasks", 109 "version": "4.3.0", 110 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 111 }, 112 { 113 "pname": "runtime.any.System.Threading.Timer", 114 "version": "4.3.0", 115 + "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" 116 }, 117 { 118 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 119 "version": "4.3.0", 120 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 121 }, 122 { 123 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 124 "version": "4.3.0", 125 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 126 }, 127 { 128 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 129 "version": "4.3.0", 130 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 131 }, 132 { 133 "pname": "runtime.native.System", 134 "version": "4.3.0", 135 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 136 }, 137 { 138 "pname": "runtime.native.System.IO.Compression", 139 "version": "4.3.0", 140 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 141 }, 142 { 143 "pname": "runtime.native.System.Net.Http", 144 "version": "4.3.0", 145 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 146 }, 147 { 148 "pname": "runtime.native.System.Security.Cryptography.Apple", 149 "version": "4.3.0", 150 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 151 }, 152 { 153 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 154 "version": "4.3.0", 155 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 156 }, 157 { 158 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 159 "version": "4.3.0", 160 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 161 }, 162 { 163 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 164 "version": "4.3.0", 165 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 166 }, 167 { 168 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 169 "version": "4.3.0", 170 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 171 }, 172 { 173 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 174 "version": "4.3.0", 175 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 176 }, 177 { 178 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 179 "version": "4.3.0", 180 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 181 }, 182 { 183 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 184 "version": "4.3.0", 185 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 186 }, 187 { 188 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 189 "version": "4.3.0", 190 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 191 }, 192 { 193 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 194 "version": "4.3.0", 195 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 196 }, 197 { 198 "pname": "runtime.unix.Microsoft.Win32.Primitives", 199 "version": "4.3.0", 200 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 201 }, 202 { 203 "pname": "runtime.unix.System.Console", 204 "version": "4.3.0", 205 + "hash": "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190=" 206 }, 207 { 208 "pname": "runtime.unix.System.Diagnostics.Debug", 209 "version": "4.3.0", 210 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 211 }, 212 { 213 "pname": "runtime.unix.System.IO.FileSystem", 214 "version": "4.3.0", 215 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 216 }, 217 { 218 "pname": "runtime.unix.System.Net.Primitives", 219 "version": "4.3.0", 220 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 221 }, 222 { 223 "pname": "runtime.unix.System.Net.Sockets", 224 "version": "4.3.0", 225 + "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" 226 }, 227 { 228 "pname": "runtime.unix.System.Private.Uri", 229 "version": "4.3.0", 230 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 231 }, 232 { 233 "pname": "runtime.unix.System.Runtime.Extensions", 234 "version": "4.3.0", 235 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 236 }, 237 { 238 "pname": "System.AppContext", 239 "version": "4.3.0", 240 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 241 }, 242 { 243 "pname": "System.Buffers", 244 "version": "4.3.0", 245 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 246 }, 247 { 248 "pname": "System.Collections", 249 "version": "4.3.0", 250 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 251 }, 252 { 253 "pname": "System.Collections.Concurrent", 254 "version": "4.3.0", 255 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 256 }, 257 { 258 "pname": "System.Console", 259 "version": "4.3.0", 260 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 261 }, 262 { 263 "pname": "System.Diagnostics.Debug", 264 "version": "4.3.0", 265 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 266 }, 267 { 268 "pname": "System.Diagnostics.DiagnosticSource", 269 "version": "4.3.0", 270 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 271 }, 272 { 273 "pname": "System.Diagnostics.Tools", 274 "version": "4.3.0", 275 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 276 }, 277 { 278 "pname": "System.Diagnostics.Tracing", 279 "version": "4.3.0", 280 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 281 }, 282 { 283 "pname": "System.Globalization", 284 "version": "4.3.0", 285 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 286 }, 287 { 288 "pname": "System.Globalization.Calendars", 289 "version": "4.3.0", 290 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 291 }, 292 { 293 "pname": "System.Globalization.Extensions", 294 "version": "4.3.0", 295 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 296 }, 297 { 298 "pname": "System.IO", 299 "version": "4.3.0", 300 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 301 }, 302 { 303 "pname": "System.IO.Compression", 304 "version": "4.3.0", 305 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 306 }, 307 { 308 "pname": "System.IO.Compression.ZipFile", 309 "version": "4.3.0", 310 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 311 }, 312 { 313 "pname": "System.IO.FileSystem", 314 "version": "4.3.0", 315 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 316 }, 317 { 318 "pname": "System.IO.FileSystem.Primitives", 319 "version": "4.3.0", 320 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 321 }, 322 { 323 "pname": "System.Linq", 324 "version": "4.3.0", 325 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 326 }, 327 { 328 "pname": "System.Linq.Expressions", 329 "version": "4.3.0", 330 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 331 }, 332 { 333 "pname": "System.Net.Http", 334 "version": "4.3.0", 335 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 336 }, 337 { 338 "pname": "System.Net.NameResolution", 339 "version": "4.3.0", 340 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 341 }, 342 { 343 "pname": "System.Net.Primitives", 344 "version": "4.3.0", 345 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 346 }, 347 { 348 "pname": "System.Net.Sockets", 349 "version": "4.3.0", 350 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 351 }, 352 { 353 "pname": "System.ObjectModel", 354 "version": "4.3.0", 355 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 356 }, 357 { 358 "pname": "System.Private.Uri", 359 "version": "4.3.0", 360 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 361 }, 362 { 363 "pname": "System.Reflection", 364 "version": "4.3.0", 365 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 366 }, 367 { 368 "pname": "System.Reflection.Emit", 369 "version": "4.3.0", 370 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 371 }, 372 { 373 "pname": "System.Reflection.Emit.ILGeneration", 374 "version": "4.3.0", 375 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 376 }, 377 { 378 "pname": "System.Reflection.Emit.Lightweight", 379 "version": "4.3.0", 380 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 381 }, 382 { 383 "pname": "System.Reflection.Extensions", 384 "version": "4.3.0", 385 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 386 }, 387 { 388 "pname": "System.Reflection.Primitives", 389 "version": "4.3.0", 390 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 391 }, 392 { 393 "pname": "System.Reflection.TypeExtensions", 394 "version": "4.3.0", 395 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 396 }, 397 { 398 "pname": "System.Resources.ResourceManager", 399 "version": "4.3.0", 400 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 401 }, 402 { 403 "pname": "System.Runtime", 404 "version": "4.3.0", 405 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 406 }, 407 { 408 "pname": "System.Runtime.Extensions", 409 "version": "4.3.0", 410 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 411 }, 412 { 413 "pname": "System.Runtime.Handles", 414 "version": "4.3.0", 415 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 416 }, 417 { 418 "pname": "System.Runtime.InteropServices", 419 "version": "4.3.0", 420 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 421 }, 422 { 423 "pname": "System.Runtime.InteropServices.RuntimeInformation", 424 "version": "4.3.0", 425 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 426 }, 427 { 428 "pname": "System.Runtime.Numerics", 429 "version": "4.3.0", 430 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 431 }, 432 { 433 "pname": "System.Security.Claims", 434 "version": "4.3.0", 435 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 436 }, 437 { 438 "pname": "System.Security.Cryptography.Algorithms", 439 "version": "4.3.0", 440 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 441 }, 442 { 443 "pname": "System.Security.Cryptography.Cng", 444 "version": "4.3.0", 445 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 446 }, 447 { 448 "pname": "System.Security.Cryptography.Csp", 449 "version": "4.3.0", 450 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 451 }, 452 { 453 "pname": "System.Security.Cryptography.Encoding", 454 "version": "4.3.0", 455 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 456 }, 457 { 458 "pname": "System.Security.Cryptography.OpenSsl", 459 "version": "4.3.0", 460 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 461 }, 462 { 463 "pname": "System.Security.Cryptography.Primitives", 464 "version": "4.3.0", 465 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 466 }, 467 { 468 "pname": "System.Security.Cryptography.X509Certificates", 469 "version": "4.3.0", 470 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 471 }, 472 { 473 "pname": "System.Security.Principal", 474 "version": "4.3.0", 475 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 476 }, 477 { 478 "pname": "System.Security.Principal.Windows", 479 "version": "4.3.0", 480 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 481 }, 482 { 483 "pname": "System.Text.Encoding", 484 "version": "4.3.0", 485 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 486 }, 487 { 488 "pname": "System.Text.Encoding.Extensions", 489 "version": "4.3.0", 490 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 491 }, 492 { 493 "pname": "System.Text.RegularExpressions", 494 "version": "4.3.0", 495 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 496 }, 497 { 498 "pname": "System.Threading", 499 "version": "4.3.0", 500 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 501 }, 502 { 503 "pname": "System.Threading.Tasks", 504 "version": "4.3.0", 505 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 506 }, 507 { 508 "pname": "System.Threading.Tasks.Extensions", 509 "version": "4.3.0", 510 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 511 }, 512 { 513 "pname": "System.Threading.ThreadPool", 514 "version": "4.3.0", 515 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 516 }, 517 { 518 "pname": "System.Threading.Timer", 519 "version": "4.3.0", 520 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 521 }, 522 { 523 "pname": "System.Xml.ReaderWriter", 524 "version": "4.3.0", 525 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 526 }, 527 { 528 "pname": "System.Xml.XDocument", 529 "version": "4.3.0", 530 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 531 } 532 ]
+24 -13
pkgs/by-name/fo/formula/package.nix
··· 1 - { lib, stdenv, fetchFromGitHub, buildDotnetModule, dotnetCorePackages, unstableGitUpdater }: 2 3 - buildDotnetModule rec { 4 pname = "formula-dotnet"; 5 version = "2.0"; 6 ··· 8 owner = "VUISIS"; 9 repo = "formula-dotnet"; 10 rev = "8ee2e6abfd4ce038e1d9cb9c8602dec1ed6c0163"; 11 - sha256 = "sha256-2ulv//YV3OqrfFltgUCeDe4rOPC0qqJ+80/D2lIoih8="; 12 }; 13 14 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 15 nugetDeps = ./nuget.json; 16 projectFile = "Src/CommandLine/CommandLine.csproj"; 17 18 - postFixup = if stdenv.hostPlatform.isLinux then '' 19 - mv $out/bin/CommandLine $out/bin/formula 20 - '' else lib.optionalString stdenv.hostPlatform.isDarwin '' 21 - makeWrapper ${dotnetCorePackages.runtime_6_0}/bin/dotnet $out/bin/formula \ 22 - --add-flags "$out/lib/formula-dotnet/CommandLine.dll" \ 23 - --prefix DYLD_LIBRARY_PATH : $out/lib/formula-dotnet/runtimes/macos/native 24 - ''; 25 26 - passthru.updateScript = unstableGitUpdater { url = meta.homepage; }; 27 28 meta = with lib; { 29 description = "Formal Specifications for Verification and Synthesis"; ··· 33 platforms = platforms.unix; 34 mainProgram = "formula"; 35 }; 36 - }
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + buildDotnetModule, 6 + dotnetCorePackages, 7 + unstableGitUpdater, 8 + }: 9 10 + buildDotnetModule (finalAttrs: { 11 pname = "formula-dotnet"; 12 version = "2.0"; 13 ··· 15 owner = "VUISIS"; 16 repo = "formula-dotnet"; 17 rev = "8ee2e6abfd4ce038e1d9cb9c8602dec1ed6c0163"; 18 + hash = "sha256-2ulv//YV3OqrfFltgUCeDe4rOPC0qqJ+80/D2lIoih8="; 19 }; 20 21 + patches = [ ./dotnet-8-upgrade.patch ]; 22 + 23 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 24 nugetDeps = ./nuget.json; 25 projectFile = "Src/CommandLine/CommandLine.csproj"; 26 27 + postFixup = 28 + lib.optionalString stdenvNoCC.hostPlatform.isLinux '' 29 + mv $out/bin/CommandLine $out/bin/formula 30 + '' 31 + + lib.optionalString stdenvNoCC.hostPlatform.isDarwin '' 32 + makeWrapper ${dotnetCorePackages.runtime_8_0}/bin/dotnet $out/bin/formula \ 33 + --add-flags "$out/lib/formula-dotnet/CommandLine.dll" \ 34 + --prefix DYLD_LIBRARY_PATH : $out/lib/formula-dotnet/runtimes/macos/native 35 + ''; 36 37 + passthru.updateScript = unstableGitUpdater { url = finalAttrs.meta.homepage; }; 38 39 meta = with lib; { 40 description = "Formal Specifications for Verification and Synthesis"; ··· 44 platforms = platforms.unix; 45 mainProgram = "formula"; 46 }; 47 + })
+2 -2
pkgs/by-name/go/goread/package.nix
··· 6 7 buildGoModule rec { 8 pname = "goread"; 9 - version = "1.7.1"; 10 11 src = fetchFromGitHub { 12 owner = "TypicalAM"; 13 repo = "goread"; 14 rev = "v${version}"; 15 - hash = "sha256-tWQVqHtuTCHrsZu3CfTWUQzvUYbQrrdJoWHp43dfPEE="; 16 }; 17 18 vendorHash = "sha256-S/0uuy/G7ZT239OgKaOT1dmY+u5/lnZKL4GtbEi2zCI=";
··· 6 7 buildGoModule rec { 8 pname = "goread"; 9 + version = "1.7.2"; 10 11 src = fetchFromGitHub { 12 owner = "TypicalAM"; 13 repo = "goread"; 14 rev = "v${version}"; 15 + hash = "sha256-8QjroS0aKALcrDJkpihD70iJJBdiVP4Q2j2n3BsY71w="; 16 }; 17 18 vendorHash = "sha256-S/0uuy/G7ZT239OgKaOT1dmY+u5/lnZKL4GtbEi2zCI=";
+3 -3
pkgs/by-name/go/goreleaser/package.nix
··· 10 }: 11 buildGoModule rec { 12 pname = "goreleaser"; 13 - version = "2.5.0"; 14 15 src = fetchFromGitHub { 16 owner = "goreleaser"; 17 repo = "goreleaser"; 18 rev = "v${version}"; 19 - hash = "sha256-DWxYcviI/J9SlHe81UU8yw19pz671C+BsUnrId4JbDE="; 20 }; 21 22 - vendorHash = "sha256-Dbd7zKmzaMixD7AsWjsdiSXUebyjFvPfmwMjozMnaUQ="; 23 24 ldflags = [ 25 "-s"
··· 10 }: 11 buildGoModule rec { 12 pname = "goreleaser"; 13 + version = "2.5.1"; 14 15 src = fetchFromGitHub { 16 owner = "goreleaser"; 17 repo = "goreleaser"; 18 rev = "v${version}"; 19 + hash = "sha256-W3f/1nn2gZhNloZNEg4ucTKt7B0K6NIYcBsPJyEhaKc="; 20 }; 21 22 + vendorHash = "sha256-lEtuEtz0FMTiUYHiOhPlH78IXHjXCj0Y9Uf2lLgJw/o="; 23 24 ldflags = [ 25 "-s"
+35 -10
pkgs/by-name/hm/hmmer/package.nix
··· 2 lib, 3 stdenv, 4 fetchurl, 5 }: 6 7 - stdenv.mkDerivation rec { 8 version = "3.4"; 9 pname = "hmmer"; 10 11 src = fetchurl { 12 - url = "http://eddylab.org/software/hmmer/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-ynDZT9DPJxvXBjQjqrsRbULeUzEXNDqbJ6ZcF/8G+/M="; 14 }; 15 16 - meta = with lib; { 17 description = "Biosequence analysis using profile hidden Markov models"; 18 longDescription = '' 19 HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). ··· 22 HMMER can be downloaded and installed as a command line tool on your own hardware, and now it is also more widely accessible to the scientific community via new search servers at the European Bioinformatics Institute. 23 ''; 24 homepage = "http://hmmer.org/"; 25 - changelog = "https://github.com/EddyRivasLab/hmmer/blob/hmmer-${version}/release-notes/RELEASE-${version}.md"; 26 - license = licenses.gpl3; 27 - maintainers = [ maintainers.iimog ]; 28 - # at least SSE is *required* 29 - platforms = platforms.x86_64; 30 }; 31 - }
··· 2 lib, 3 stdenv, 4 fetchurl, 5 + easel, 6 + perl, 7 + python3, 8 + versionCheckHook, 9 }: 10 11 + stdenv.mkDerivation (finalAttrs: { 12 version = "3.4"; 13 pname = "hmmer"; 14 15 src = fetchurl { 16 + url = "http://eddylab.org/software/hmmer/hmmer-${finalAttrs.version}.tar.gz"; 17 + hash = "sha256-ynDZT9DPJxvXBjQjqrsRbULeUzEXNDqbJ6ZcF/8G+/M="; 18 }; 19 20 + enableParallelBuilding = true; 21 + 22 + doCheck = true; 23 + 24 + nativeCheckInputs = [ 25 + perl 26 + python3 27 + ]; 28 + 29 + preCheck = '' 30 + install -Dm755 ${easel.src}/devkit/sqc easel/devkit/sqc 31 + patchShebangs easel/devkit/sqc testsuite/* src/hmmpress.itest.pl 32 + ''; 33 + 34 + doInstallCheck = true; 35 + 36 + nativeInstallCheckInputs = [ versionCheckHook ]; 37 + 38 + versionCheckProgram = "${placeholder "out"}/bin/hmmalign"; 39 + 40 + versionCheckProgramArg = [ "-h" ]; 41 + 42 + meta = { 43 description = "Biosequence analysis using profile hidden Markov models"; 44 longDescription = '' 45 HMMER is used for searching sequence databases for sequence homologs, and for making sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). ··· 48 HMMER can be downloaded and installed as a command line tool on your own hardware, and now it is also more widely accessible to the scientific community via new search servers at the European Bioinformatics Institute. 49 ''; 50 homepage = "http://hmmer.org/"; 51 + changelog = "https://github.com/EddyRivasLab/hmmer/blob/hmmer-${finalAttrs.version}/release-notes/RELEASE-${finalAttrs.version}.md"; 52 + license = lib.licenses.bsd3; 53 + maintainers = [ lib.maintainers.iimog ]; 54 + platforms = lib.platforms.unix; 55 }; 56 + })
+3 -3
pkgs/by-name/ho/home-manager/package.nix
··· 19 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 pname = "home-manager"; 22 - version = "0-unstable-2024-12-23"; 23 24 src = fetchFromGitHub { 25 name = "home-manager-source"; 26 owner = "nix-community"; 27 repo = "home-manager"; 28 - rev = "f1b1786ea77739dcd181b920d430e30fb1608b8a"; 29 - hash = "sha256-f9UyHMTb+BwF6RDZ8eO9HOkSlKeeSPBlcYhMmV1UNIk="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 pname = "home-manager"; 22 + version = "0-unstable-2025-01-02"; 23 24 src = fetchFromGitHub { 25 name = "home-manager-source"; 26 owner = "nix-community"; 27 repo = "home-manager"; 28 + rev = "5f6aa268e419d053c3d5025da740e390b12ac936"; 29 + hash = "sha256-C73gLFnEh8ZI0uDijUgCDWCd21T6I6tsaWgIBHcfAXg="; 30 }; 31 32 nativeBuildInputs = [
+65
pkgs/by-name/in/inklecate/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/InkTestBed/InkTestBed.csproj b/InkTestBed/InkTestBed.csproj 2 + index d729fee..ea3e9e6 100644 3 + --- a/InkTestBed/InkTestBed.csproj 4 + +++ b/InkTestBed/InkTestBed.csproj 5 + @@ -2,7 +2,7 @@ 6 + 7 + <PropertyGroup> 8 + <OutputType>Exe</OutputType> 9 + - <TargetFramework>net6.0</TargetFramework> 10 + + <TargetFramework>net8.0</TargetFramework> 11 + <TieredCompilation>true</TieredCompilation> 12 + <RootNamespace>InkTestBed</RootNamespace> 13 + <AssemblyName>InkTestBed</AssemblyName> 14 + diff --git a/compiler/ink_compiler.csproj b/compiler/ink_compiler.csproj 15 + index a6dd06b..c4708cc 100644 16 + --- a/compiler/ink_compiler.csproj 17 + +++ b/compiler/ink_compiler.csproj 18 + @@ -1,7 +1,7 @@ 19 + <Project Sdk="Microsoft.NET.Sdk"> 20 + 21 + <PropertyGroup> 22 + - <TargetFramework>net6.0</TargetFramework> 23 + + <TargetFramework>net8.0</TargetFramework> 24 + <RootNamespace>Ink</RootNamespace> 25 + <AssemblyName>ink_compiler</AssemblyName> 26 + </PropertyGroup> 27 + diff --git a/ink-engine-runtime/ink-engine-runtime.csproj b/ink-engine-runtime/ink-engine-runtime.csproj 28 + index caba6df..777c109 100644 29 + --- a/ink-engine-runtime/ink-engine-runtime.csproj 30 + +++ b/ink-engine-runtime/ink-engine-runtime.csproj 31 + @@ -1,7 +1,7 @@ 32 + <Project Sdk="Microsoft.NET.Sdk"> 33 + 34 + <PropertyGroup> 35 + - <TargetFrameworks>net6.0</TargetFrameworks> 36 + + <TargetFramework>net8.0</TargetFramework> 37 + <RootNamespace>Ink.Runtime</RootNamespace> 38 + <AssemblyName>ink-engine-runtime</AssemblyName> 39 + </PropertyGroup> 40 + diff --git a/inklecate/inklecate.csproj b/inklecate/inklecate.csproj 41 + index 0a02264..cf7b254 100644 42 + --- a/inklecate/inklecate.csproj 43 + +++ b/inklecate/inklecate.csproj 44 + @@ -2,7 +2,7 @@ 45 + 46 + <PropertyGroup> 47 + <OutputType>Exe</OutputType> 48 + - <TargetFramework>net6.0</TargetFramework> 49 + + <TargetFramework>net8.0</TargetFramework> 50 + <RootNamespace>Ink</RootNamespace> 51 + <AssemblyName>inklecate</AssemblyName> 52 + </PropertyGroup> 53 + diff --git a/tests/tests.csproj b/tests/tests.csproj 54 + index 8d3bd6b..a9731c5 100644 55 + --- a/tests/tests.csproj 56 + +++ b/tests/tests.csproj 57 + @@ -1,7 +1,7 @@ 58 + <Project Sdk="Microsoft.NET.Sdk"> 59 + 60 + <PropertyGroup> 61 + - <TargetFramework>net6.0</TargetFramework> 62 + + <TargetFramework>net8.0</TargetFramework> 63 + <RootNamespace>tests</RootNamespace> 64 + <AssemblyName>ink-tests</AssemblyName> 65 +
+9 -7
pkgs/by-name/in/inklecate/package.nix
··· 1 - { lib 2 - , stdenv 3 - , buildDotnetModule 4 - , dotnetCorePackages 5 - , fetchFromGitHub 6 }: 7 8 buildDotnetModule rec { ··· 16 hash = "sha512-aUjjT5Qf64wrKRn1vkwJadMOBWMkvsXUjtZ7S3/ZWAh1CCDkQNO84mSbtbVc9ny0fKeJEqaDX2tJNwq7pYqAbA=="; 17 }; 18 19 buildInputs = [ (lib.getLib stdenv.cc.cc) ]; 20 21 projectFile = "inklecate/inklecate.csproj"; 22 nugetDeps = ./deps.json; 23 executables = [ "inklecate" ]; 24 25 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 26 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 27 28 meta = with lib; { 29 description = "Compiler for ink, inkle's scripting language";
··· 1 + { 2 + lib, 3 + stdenv, 4 + buildDotnetModule, 5 + dotnetCorePackages, 6 + fetchFromGitHub, 7 }: 8 9 buildDotnetModule rec { ··· 17 hash = "sha512-aUjjT5Qf64wrKRn1vkwJadMOBWMkvsXUjtZ7S3/ZWAh1CCDkQNO84mSbtbVc9ny0fKeJEqaDX2tJNwq7pYqAbA=="; 18 }; 19 20 + patches = [ ./dotnet-8-upgrade.patch ]; 21 + 22 buildInputs = [ (lib.getLib stdenv.cc.cc) ]; 23 24 projectFile = "inklecate/inklecate.csproj"; 25 nugetDeps = ./deps.json; 26 executables = [ "inklecate" ]; 27 28 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 29 30 meta = with lib; { 31 description = "Compiler for ink, inkle's scripting language";
+87
pkgs/by-name/je/jellyseerr/package.nix
···
··· 1 + { 2 + lib, 3 + pnpm_9, 4 + fetchFromGitHub, 5 + stdenv, 6 + makeWrapper, 7 + nodejs_20, 8 + python3, 9 + sqlite, 10 + nix-update-script, 11 + }: 12 + 13 + let 14 + nodejs = nodejs_20; 15 + pnpm = pnpm_9.override { inherit nodejs; }; 16 + in 17 + stdenv.mkDerivation rec { 18 + pname = "jellyseerr"; 19 + version = "2.1.0"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "Fallenbagel"; 23 + repo = "jellyseerr"; 24 + rev = "v${version}"; 25 + hash = "sha256-5kaeqhjUy9Lgx4/uFcGRlAo+ROEOdTWc2m49rq8R8Hs="; 26 + }; 27 + 28 + pnpmDeps = pnpm.fetchDeps { 29 + inherit pname version src; 30 + hash = "sha256-xu6DeaBArQmnqEnIgjc1DTZujQebSkjuai9tMHeQWCk="; 31 + }; 32 + 33 + buildInputs = [ sqlite ]; 34 + 35 + nativeBuildInputs = [ 36 + python3 37 + nodejs 38 + makeWrapper 39 + pnpm.configHook 40 + ]; 41 + 42 + preBuild = '' 43 + export npm_config_nodedir=${nodejs} 44 + pushd node_modules 45 + pnpm rebuild bcrypt sqlite3 46 + popd 47 + ''; 48 + 49 + buildPhase = '' 50 + runHook preBuild 51 + pnpm build 52 + pnpm prune --prod --ignore-scripts 53 + rm -rf .next/cache 54 + runHook postBuild 55 + ''; 56 + 57 + installPhase = '' 58 + runHook preInstall 59 + mkdir -p $out/share 60 + cp -r -t $out/share .next node_modules dist public package.json overseerr-api.yml 61 + runHook postInstall 62 + ''; 63 + 64 + postInstall = '' 65 + mkdir -p $out/bin 66 + makeWrapper '${nodejs}/bin/node' "$out/bin/jellyseerr" \ 67 + --add-flags "$out/share/dist/index.js" \ 68 + --chdir "$out/share" \ 69 + --set NODE_ENV production 70 + ''; 71 + 72 + passthru.updateScript = nix-update-script { }; 73 + 74 + meta = with lib; { 75 + description = "Fork of overseerr for jellyfin support"; 76 + homepage = "https://github.com/Fallenbagel/jellyseerr"; 77 + longDescription = '' 78 + Jellyseerr is a free and open source software application for managing 79 + requests for your media library. It is a a fork of Overseerr built to 80 + bring support for Jellyfin & Emby media servers! 81 + ''; 82 + license = licenses.mit; 83 + maintainers = with maintainers; [ camillemndn ]; 84 + platforms = platforms.linux; 85 + mainProgram = "jellyseerr"; 86 + }; 87 + }
-5
pkgs/by-name/kn/knossosnet/deps.json
··· 505 "hash": "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U=" 506 }, 507 { 508 - "pname": "System.Runtime.CompilerServices.Unsafe", 509 - "version": "6.0.0", 510 - "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 511 - }, 512 - { 513 "pname": "System.Runtime.Extensions", 514 "version": "4.3.0", 515 "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="
··· 505 "hash": "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U=" 506 }, 507 { 508 "pname": "System.Runtime.Extensions", 509 "version": "4.3.0", 510 "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="
+39
pkgs/by-name/kn/knossosnet/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/IonKiwi.lz4/IonKiwi.lz4.csproj b/IonKiwi.lz4/IonKiwi.lz4.csproj 2 + index 312984f..804be5c 100644 3 + --- a/IonKiwi.lz4/IonKiwi.lz4.csproj 4 + +++ b/IonKiwi.lz4/IonKiwi.lz4.csproj 5 + @@ -1,7 +1,7 @@ 6 + <Project Sdk="Microsoft.NET.Sdk"> 7 + 8 + <PropertyGroup> 9 + - <TargetFrameworks>net60</TargetFrameworks> 10 + + <TargetFramework>net8.0</TargetFramework> 11 + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 12 + <PackageId>IonKiwi.lz4.managed</PackageId> 13 + <Version>1.0.7</Version> 14 + diff --git a/Knossos.NET/Knossos.NET.csproj b/Knossos.NET/Knossos.NET.csproj 15 + index 501faaa..4b563f1 100644 16 + --- a/Knossos.NET/Knossos.NET.csproj 17 + +++ b/Knossos.NET/Knossos.NET.csproj 18 + @@ -1,7 +1,7 @@ 19 + <Project Sdk="Microsoft.NET.Sdk"> 20 + <PropertyGroup> 21 + <OutputType>WinExe</OutputType> 22 + - <TargetFramework>net6.0</TargetFramework> 23 + + <TargetFramework>net8.0</TargetFramework> 24 + <Nullable>enable</Nullable> 25 + <!--Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 --> 26 + <TrimMode>copyused</TrimMode> 27 + diff --git a/VP.NET/VP.NET.csproj b/VP.NET/VP.NET.csproj 28 + index 11fa155..2eef420 100644 29 + --- a/VP.NET/VP.NET.csproj 30 + +++ b/VP.NET/VP.NET.csproj 31 + @@ -1,7 +1,7 @@ 32 + <Project Sdk="Microsoft.NET.Sdk"> 33 + 34 + <PropertyGroup> 35 + - <TargetFramework>net6.0</TargetFramework> 36 + + <TargetFramework>net8.0</TargetFramework> 37 + <ImplicitUsings>enable</ImplicitUsings> 38 + <Nullable>enable</Nullable> 39 + </PropertyGroup>
+2 -2
pkgs/by-name/kn/knossosnet/package.nix
··· 17 hash = "sha256-vlSiM6kskV4wfBZF7Rv5ICyqKG0Zhz/iU8kflYOaf0U="; 18 }; 19 20 - patches = [ ./targetframework.patch ]; 21 22 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 23 nugetDeps = ./deps.json; 24 executables = [ "Knossos.NET" ]; 25
··· 17 hash = "sha256-vlSiM6kskV4wfBZF7Rv5ICyqKG0Zhz/iU8kflYOaf0U="; 18 }; 19 20 + patches = [ ./dotnet-8-upgrade.patch ]; 21 22 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 23 nugetDeps = ./deps.json; 24 executables = [ "Knossos.NET" ]; 25
-12
pkgs/by-name/kn/knossosnet/targetframework.patch
··· 1 - diff -Naur Knossos.NET-0.1.4/IonKiwi.lz4/IonKiwi.lz4.csproj Knossos.NET-0.1.4.new/IonKiwi.lz4/IonKiwi.lz4.csproj 2 - --- Knossos.NET-0.1.4/IonKiwi.lz4/IonKiwi.lz4.csproj 2023-10-18 15:17:20.000000000 -0400 3 - +++ Knossos.NET-0.1.4.new/IonKiwi.lz4/IonKiwi.lz4.csproj 2024-01-03 17:39:56.809971086 -0500 4 - @@ -1,7 +1,7 @@ 5 - <Project Sdk="Microsoft.NET.Sdk"> 6 - 7 - <PropertyGroup> 8 - - <TargetFrameworks>net60</TargetFrameworks> 9 - + <TargetFramework>net6.0</TargetFramework> 10 - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 11 - <PackageId>IonKiwi.lz4.managed</PackageId> 12 - <Version>1.0.7</Version>
···
+3 -4
pkgs/by-name/ko/komikku/package.nix
··· 23 24 python3.pkgs.buildPythonApplication rec { 25 pname = "komikku"; 26 - version = "1.66.0"; 27 - 28 - format = "other"; 29 30 src = fetchFromGitea { 31 domain = "codeberg.org"; 32 owner = "valos"; 33 repo = "Komikku"; 34 rev = "v${version}"; 35 - hash = "sha256-hrQZZ0pZhn+Ph7it6LPFtRMN9mvgFkG//zEi+pVb8n4="; 36 }; 37 38 nativeBuildInputs = [
··· 23 24 python3.pkgs.buildPythonApplication rec { 25 pname = "komikku"; 26 + version = "1.67.0"; 27 + pyproject = false; 28 29 src = fetchFromGitea { 30 domain = "codeberg.org"; 31 owner = "valos"; 32 repo = "Komikku"; 33 rev = "v${version}"; 34 + hash = "sha256-vWAYsImJseEQvgq7vreqS76M963zfuL56R87P3od9m4="; 35 }; 36 37 nativeBuildInputs = [
+3 -2
pkgs/by-name/ma/materialgram/package.nix
··· 11 unwrapped = telegram-desktop.unwrapped.overrideAttrs ( 12 finalAttrs: previousAttrs: { 13 pname = "materialgram-unwrapped"; 14 - version = "5.7.0.1"; 15 16 src = fetchFromGitHub { 17 owner = "kukuruzka165"; 18 repo = "materialgram"; 19 rev = "refs/tags/v${finalAttrs.version}"; 20 - hash = "sha256-YdLUwXMATla64KSYnXLXwLl0KktNoB/IuHIIY44R1VY="; 21 fetchSubmodules = true; 22 }; 23 ··· 32 maintainers = with lib.maintainers; [ 33 oluceps 34 aleksana 35 ]; 36 mainProgram = "materialgram"; 37 };
··· 11 unwrapped = telegram-desktop.unwrapped.overrideAttrs ( 12 finalAttrs: previousAttrs: { 13 pname = "materialgram-unwrapped"; 14 + version = "5.9.0.1"; 15 16 src = fetchFromGitHub { 17 owner = "kukuruzka165"; 18 repo = "materialgram"; 19 rev = "refs/tags/v${finalAttrs.version}"; 20 + hash = "sha256-QmXwO8Dn+ATWGwN5smxOB2kxmJZETSMbqwFoR0t3luc="; 21 fetchSubmodules = true; 22 }; 23 ··· 32 maintainers = with lib.maintainers; [ 33 oluceps 34 aleksana 35 + stellessia 36 ]; 37 mainProgram = "materialgram"; 38 };
+49
pkgs/by-name/me/megacmd/fix-darwin.patch
···
··· 1 + --- a/Makefile.am 2 + +++ b/Makefile.am 3 + @@ -25,6 +25,11 @@ AM_CPPFLAGS = \ 4 + 5 + AM_CPPFLAGS+=-I$(top_srcdir)/src -I$(top_srcdir)/sdk/include 6 + 7 + +if DARWIN 8 + +AM_LIBTOOLFLAGS="--tag=CXX" 9 + +AM_CPPFLAGS+=-I$(top_srcdir)/include/mega/osx -I$(top_srcdir)/sdk/include/mega/osx 10 + +endif 11 + + 12 + if WIN32 13 + AM_CPPFLAGS+=-I$(top_srcdir)/sdk/include/mega/win32 14 + else 15 + --- a/src/megacmdshell/megacmdshellcommunications.cpp 16 + +++ b/src/megacmdshell/megacmdshellcommunications.cpp 17 + @@ -306,10 +306,6 @@ SOCKET MegaCmdShellCommunications::createSocket(int number, bool initializeserve 18 + #endif 19 + const char executable2[] = "./mega-cmd-server"; 20 + #else 21 + - #ifdef __MACH__ 22 + - const char executable[] = "/Applications/MEGAcmd.app/Contents/MacOS/mega-cmd"; 23 + - const char executable2[] = "./mega-cmd"; 24 + - #else 25 + const char executable[] = "mega-cmd-server"; 26 + #ifdef __linux__ 27 + char executable2[PATH_MAX]; 28 + @@ -317,7 +313,6 @@ SOCKET MegaCmdShellCommunications::createSocket(int number, bool initializeserve 29 + #else 30 + const char executable2[] = "./mega-cmd-server"; 31 + #endif 32 + - #endif 33 + #endif 34 + 35 + std::vector<char*> argsVector{ 36 + --- a/sdk/Makefile.am 37 + +++ b/sdk/Makefile.am 38 + @@ -27,6 +27,11 @@ AM_CPPFLAGS = \ 39 + 40 + include m4/aminclude.am 41 + 42 + +if DARWIN 43 + +AM_LIBTOOLFLAGS="--tag=CXX" 44 + +AM_CPPFLAGS+=-I$(top_srcdir)/include/mega/osx 45 + +endif 46 + + 47 + if WIN32 48 + AM_CPPFLAGS+=-I$(top_srcdir)/include/mega/win32 49 + else
+29
pkgs/by-name/me/megacmd/fix-ffmpeg.patch
···
··· 1 + --- a/sdk/src/gfx/freeimage.cpp 2 + +++ b/sdk/src/gfx/freeimage.cpp 3 + @@ -216,11 +216,13 @@ bool GfxProviderFreeImage::readbitmapFreeimage(const LocalPath& imagePath, int s 4 + 5 + #ifdef HAVE_FFMPEG 6 + 7 + +#if LIBAVCODEC_VERSION_MAJOR < 60 8 + #ifdef AV_CODEC_CAP_TRUNCATED 9 + #define CAP_TRUNCATED AV_CODEC_CAP_TRUNCATED 10 + #else 11 + #define CAP_TRUNCATED CODEC_CAP_TRUNCATED 12 + #endif 13 + +#endif 14 + 15 + const char *GfxProviderFreeImage::supportedformatsFfmpeg() 16 + { 17 + @@ -323,10 +325,12 @@ bool GfxProviderFreeImage::readbitmapFfmpeg(const LocalPath& imagePath, int size 18 + 19 + // Force seeking to key frames 20 + formatContext->seek2any = false; 21 + +#if LIBAVCODEC_VERSION_MAJOR < 60 22 + if (decoder->capabilities & CAP_TRUNCATED) 23 + { 24 + codecContext->flags |= CAP_TRUNCATED; 25 + } 26 + +#endif 27 + 28 + AVPixelFormat sourcePixelFormat = static_cast<AVPixelFormat>(codecParm->format); 29 + AVPixelFormat targetPixelFormat = AV_PIX_FMT_BGR24; //raw data expected by freeimage is in this format
+88 -53
pkgs/by-name/me/megacmd/package.nix
··· 1 - { lib 2 - , stdenv 3 - , autoreconfHook 4 - , c-ares 5 - , cryptopp 6 - , curl 7 - , fetchFromGitHub 8 - # build fails with latest ffmpeg, see https://github.com/meganz/MEGAcmd/issues/523. 9 - # to be re-enabled when patch available 10 - # , ffmpeg 11 - , gcc-unwrapped 12 - , icu 13 - , libmediainfo 14 - , libraw 15 - , libsodium 16 - , libuv 17 - , libzen 18 - , pcre-cpp 19 - , pkg-config 20 - , readline 21 - , sqlite 22 }: 23 24 - stdenv.mkDerivation rec { 25 pname = "megacmd"; 26 version = "1.7.0"; 27 28 - src = fetchFromGitHub { 29 - owner = "meganz"; 30 - repo = "MEGAcmd"; 31 - rev = "${version}_Linux"; 32 - hash = "sha256-UlSqwM8GQKeG8/K0t5DbM034NQOeBg+ujNi/MMsVCuM="; 33 - fetchSubmodules = true; 34 - }; 35 36 enableParallelBuilding = true; 37 - nativeBuildInputs = [ autoreconfHook pkg-config ]; 38 - 39 - buildInputs = [ 40 - c-ares 41 - cryptopp 42 - curl 43 - # ffmpeg 44 - icu 45 - gcc-unwrapped 46 - libmediainfo 47 - libraw 48 - libsodium 49 - libuv 50 - libzen 51 - pcre-cpp 52 - readline 53 - sqlite 54 ]; 55 56 configureFlags = [ 57 - "--disable-curl-checks" 58 "--disable-examples" 59 "--with-cares" 60 "--with-cryptopp" 61 "--with-curl" 62 - # "--with-ffmpeg" 63 - "--without-freeimage" # disabled as freeimage is insecure 64 "--with-icu" 65 "--with-libmediainfo" 66 "--with-libuv" ··· 69 "--with-readline" 70 "--with-sodium" 71 "--with-termcap" 72 ]; 73 74 - meta = with lib; { 75 description = "MEGA Command Line Interactive and Scriptable Application"; 76 homepage = "https://mega.io/cmd"; 77 - license = with licenses; [ bsd2 gpl3Only ]; 78 - platforms = [ "i686-linux" "x86_64-linux" ]; 79 - maintainers = with maintainers; [ lunik1 ]; 80 }; 81 }
··· 1 + { 2 + lib, 3 + stdenv, 4 + autoreconfHook, 5 + c-ares, 6 + cryptopp, 7 + curl, 8 + fetchFromGitHub, 9 + ffmpeg, 10 + freeimage, 11 + gcc-unwrapped, 12 + icu, 13 + libmediainfo, 14 + libraw, 15 + libsodium, 16 + libuv, 17 + libzen, 18 + pcre-cpp, 19 + pkg-config, 20 + readline, 21 + sqlite, 22 + withFreeImage ? false, # default to false because freeimage is insecure 23 }: 24 25 + let 26 pname = "megacmd"; 27 version = "1.7.0"; 28 + srcOptions = 29 + if stdenv.isLinux then 30 + { 31 + tag = "${version}_Linux"; 32 + hash = "sha256-UlSqwM8GQKeG8/K0t5DbM034NQOeBg+ujNi/MMsVCuM="; 33 + } 34 + else 35 + { 36 + tag = "${version}_macOS"; 37 + hash = "sha256-UlSqwM8GQKeG8/K0t5DbM034NQOeBg+ujNi/MMsVCuM="; 38 + }; 39 + in 40 + stdenv.mkDerivation { 41 + inherit pname version; 42 43 + src = fetchFromGitHub ( 44 + srcOptions 45 + // { 46 + owner = "meganz"; 47 + repo = "MEGAcmd"; 48 + fetchSubmodules = true; 49 + } 50 + ); 51 52 enableParallelBuilding = true; 53 + nativeBuildInputs = [ 54 + autoreconfHook 55 + pkg-config 56 ]; 57 58 + buildInputs = 59 + lib.optionals stdenv.isLinux [ gcc-unwrapped ] # fix: ld: cannot find lib64/libstdc++fs.a 60 + ++ [ 61 + c-ares 62 + cryptopp 63 + curl 64 + ffmpeg 65 + icu 66 + libmediainfo 67 + libraw 68 + libsodium 69 + libuv 70 + libzen 71 + pcre-cpp 72 + readline 73 + sqlite 74 + ] 75 + ++ lib.optionals withFreeImage [ freeimage ]; 76 + 77 configureFlags = [ 78 "--disable-examples" 79 "--with-cares" 80 "--with-cryptopp" 81 "--with-curl" 82 + "--with-ffmpeg" 83 "--with-icu" 84 "--with-libmediainfo" 85 "--with-libuv" ··· 88 "--with-readline" 89 "--with-sodium" 90 "--with-termcap" 91 + ] ++ (if withFreeImage then [ "--with-freeimage" ] else [ "--without-freeimage" ]); 92 + 93 + # On darwin, some macros defined in AssertMacros.h (from apple-sdk) are conflicting. 94 + postConfigure = '' 95 + echo '#define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0' >> sdk/include/mega/config.h 96 + ''; 97 + 98 + patches = [ 99 + ./fix-ffmpeg.patch # https://github.com/meganz/sdk/issues/2635#issuecomment-1495405085 100 + ./fix-darwin.patch # fix: libtool tag not found; MacFileSystemAccess not declared; server cannot init 101 ]; 102 103 + meta = { 104 description = "MEGA Command Line Interactive and Scriptable Application"; 105 homepage = "https://mega.io/cmd"; 106 + license = with lib.licenses; [ 107 + bsd2 108 + gpl3Only 109 + ]; 110 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 111 + maintainers = with lib.maintainers; [ 112 + lunik1 113 + ulysseszhan 114 + ]; 115 }; 116 }
+2 -2
pkgs/by-name/om/omnictl/package.nix
··· 7 8 buildGoModule rec { 9 pname = "omnictl"; 10 - version = "0.45.0"; 11 12 src = fetchFromGitHub { 13 owner = "siderolabs"; 14 repo = "omni"; 15 rev = "v${version}"; 16 - hash = "sha256-FA2lGSeTbJXc/BEWOu43sV2xS9tTwQ+iKrDW2tFAsJ4="; 17 }; 18 19 vendorHash = "sha256-U/cserG37gM1XDN9HcPqnq4hPJSaOaLBoIs5OcsocYw=";
··· 7 8 buildGoModule rec { 9 pname = "omnictl"; 10 + version = "0.45.1"; 11 12 src = fetchFromGitHub { 13 owner = "siderolabs"; 14 repo = "omni"; 15 rev = "v${version}"; 16 + hash = "sha256-a9lp/XDet4CcMadMHj1ia4tdsK/Y8Sfd2f6/A2j1liQ="; 17 }; 18 19 vendorHash = "sha256-U/cserG37gM1XDN9HcPqnq4hPJSaOaLBoIs5OcsocYw=";
+9
pkgs/by-name/ou/outils/package.nix
··· 1 { 2 stdenv, 3 fetchFromGitHub, 4 lib, 5 }: 6 ··· 14 rev = "v${version}"; 15 hash = "sha256-FokJytwQsbGsryBzyglpb1Hg3wti/CPQTOfIGIz9ThA="; 16 }; 17 18 makeFlags = [ "PREFIX=$(out)" ]; 19
··· 1 { 2 stdenv, 3 fetchFromGitHub, 4 + fetchpatch2, 5 lib, 6 }: 7 ··· 15 rev = "v${version}"; 16 hash = "sha256-FokJytwQsbGsryBzyglpb1Hg3wti/CPQTOfIGIz9ThA="; 17 }; 18 + 19 + patches = [ 20 + (fetchpatch2 { 21 + url = "https://github.com/leahneukirchen/outils/commit/50877e1bf7c905044e0b50b227ecff48cfec394b.patch?full_index=1"; 22 + name = "outils-add-recallocarray-prototype.patch"; 23 + hash = "sha256-jOnCMPcHKMRR3J0Yh+ZTHAn7P85FO80yXVX0K2vtlVk="; 24 + }) 25 + ]; 26 27 makeFlags = [ "PREFIX=$(out)" ]; 28
+1
pkgs/by-name/pd/pdfposter/package.nix
··· 12 pypdf2 = super.pypdf2.overridePythonAttrs (oldAttrs: rec { 13 version = "2.11.1"; 14 format = "setuptools"; 15 src = fetchPypi { 16 pname = "PyPDF2"; 17 inherit version;
··· 12 pypdf2 = super.pypdf2.overridePythonAttrs (oldAttrs: rec { 13 version = "2.11.1"; 14 format = "setuptools"; 15 + pyproject = null; 16 src = fetchPypi { 17 pname = "PyPDF2"; 18 inherit version;
+2 -2
pkgs/by-name/re/remnote/package.nix
··· 6 }: 7 let 8 pname = "remnote"; 9 - version = "1.18.19"; 10 src = fetchurl { 11 url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage"; 12 - hash = "sha256-J7bghty2F54pdd/maWMWtG1kDm/sETgY1bR/jMy23e4="; 13 }; 14 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 15 in
··· 6 }: 7 let 8 pname = "remnote"; 9 + version = "1.18.26"; 10 src = fetchurl { 11 url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage"; 12 + hash = "sha256-G7I2r/jZ3Ht8Is2TagNnyQolasfLlO57qzGcVT4QvkI="; 13 }; 14 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 15 in
+5 -5
pkgs/by-name/rq/rquickshare/package.nix
··· 7 pname = "rquickshare"; 8 version = "0.11.2"; 9 src = fetchurl { 10 - url = "https://github.com/Martichou/rquickshare/releases/download/v${version}/r-quick-share-main_v${version}_glibc-2.39_amd64.AppImage"; 11 - hash = "sha256-7w1zybCPRg4RK5bKHoHLDUDXVDQL23ox/6wh8H9vTPg="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 14 in 15 appimageTools.wrapType2 { 16 inherit pname version src; 17 extraInstallCommands = '' 18 - install -Dm444 ${appimageContents}/rquickshare.desktop -t $out/share/applications 19 - substituteInPlace $out/share/applications/rquickshare.desktop \ 20 - --replace-fail 'Exec=rquickshare' 'Exec=rquickshare %u' 21 cp -r ${appimageContents}/usr/share/icons $out/share 22 ''; 23
··· 7 pname = "rquickshare"; 8 version = "0.11.2"; 9 src = fetchurl { 10 + url = "https://github.com/Martichou/rquickshare/releases/download/v${version}/r-quick-share-legacy_v${version}_glibc-2.31_amd64.AppImage"; 11 + hash = "sha256-VXYiYrTSedH8xFjuxbdplzVdfnO6s3ftY2I121Unlfw="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 14 in 15 appimageTools.wrapType2 { 16 inherit pname version src; 17 extraInstallCommands = '' 18 + install -Dm444 ${appimageContents}/r-quick-share.desktop -t $out/share/applications 19 + substituteInPlace $out/share/applications/r-quick-share.desktop \ 20 + --replace-fail 'Exec=r-quick-share' 'Exec=r-quick-share %u' 21 cp -r ${appimageContents}/usr/share/icons $out/share 22 ''; 23
+33
pkgs/by-name/ta/tai-ahom/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchurl, 5 + }: 6 + 7 + stdenvNoCC.mkDerivation { 8 + pname = "tai-ahom"; 9 + version = "unstable-2015-07-06"; 10 + 11 + src = fetchurl { 12 + url = "https://github.com/enabling-languages/tai-languages/raw/b57a3ea4589af69bb8e87c6c4bb7cd367b52f0b7/ahom/.fonts/ttf/.original/AhomUnicode_FromMartin.ttf"; 13 + hash = "sha256-U1vcVf/VgXhvK1f2Iw2JKkd2EzJgz7KbHAwnUanX8n4="; 14 + }; 15 + 16 + dontUnpack = true; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + install -Dm644 $src $out/share/fonts/truetype/AhomUnicode.ttf 22 + 23 + runHook postInstall 24 + ''; 25 + 26 + meta = with lib; { 27 + homepage = "https://github.com/enabling-languages/tai-languages"; 28 + description = "Unicode-compliant Tai Ahom font"; 29 + maintainers = with maintainers; [ mathnerd314 ]; 30 + license = licenses.ofl; # See font metadata 31 + platforms = platforms.all; 32 + }; 33 + }
+4 -4
pkgs/by-name/to/tone/deps.json
··· 141 }, 142 { 143 "pname": "Sandreas.AudioMetadata", 144 - "version": "0.2.5", 145 - "hash": "sha256-4FrW1QV4okSEswTpgj/dhFurR/2AHyTgqDgMBjRproI=" 146 }, 147 { 148 "pname": "Sandreas.Files", ··· 241 }, 242 { 243 "pname": "z440.atl.core", 244 - "version": "6.9.0", 245 - "hash": "sha256-lme55hhVwZ9Y/wVmekA0gVIsw3RUoyYuL9gMEHXuWMU=" 246 } 247 ]
··· 141 }, 142 { 143 "pname": "Sandreas.AudioMetadata", 144 + "version": "0.2.7", 145 + "hash": "sha256-GYD+nAURuU99/3JH/4QTthhzAVsau/qpcvih4eiJxtk=" 146 }, 147 { 148 "pname": "Sandreas.Files", ··· 241 }, 242 { 243 "pname": "z440.atl.core", 244 + "version": "6.11.0", 245 + "hash": "sha256-V1r1ftZ/Ud0pw/qwnqpJodRaGi9FyG3uIy3ykJUvxjg=" 246 } 247 ]
+2 -2
pkgs/by-name/to/tone/package.nix
··· 9 10 buildDotnetModule rec { 11 pname = "tone"; 12 - version = "0.2.3"; 13 14 src = fetchFromGitHub { 15 owner = "sandreas"; 16 repo = "tone"; 17 tag = "v${version}"; 18 - hash = "sha256-NBFAPEeUKZgyfNlvcOBS1IpktEnI+fOd9WLj0ByzpLY="; 19 }; 20 21 projectFile = "tone/tone.csproj";
··· 9 10 buildDotnetModule rec { 11 pname = "tone"; 12 + version = "0.2.4"; 13 14 src = fetchFromGitHub { 15 owner = "sandreas"; 16 repo = "tone"; 17 tag = "v${version}"; 18 + hash = "sha256-DX54NSlqAZzVQObm9qjUsYatjxjHKGcSLHH1kVD4Row="; 19 }; 20 21 projectFile = "tone/tone.csproj";
+3 -3
pkgs/by-name/vo/vopono/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "vopono"; 9 - version = "0.10.10"; 10 11 src = fetchCrate { 12 inherit pname version; 13 - hash = "sha256-HjubzbRsmRU33oI1p1kzCFUjC2YQJhVqljd/FHzAnMw="; 14 }; 15 16 - cargoHash = "sha256-YBDB1g8cUOo1hS8Fi03Bvpe63bolbPmhGbvT16G73js="; 17 18 meta = with lib; { 19 description = "Run applications through VPN connections in network namespaces";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "vopono"; 9 + version = "0.10.11"; 10 11 src = fetchCrate { 12 inherit pname version; 13 + hash = "sha256-qgsfTniikrdykFSFqZATp7ewPZm5z5p5FMztNKWzPIY="; 14 }; 15 16 + cargoHash = "sha256-/z4qBBY/Htlv55vNKj2c1frWsUFTRweJh/G0T2jHLr4="; 17 18 meta = with lib; { 19 description = "Run applications through VPN connections in network namespaces";
pkgs/data/fonts/ankacoder/condensed.nix pkgs/by-name/an/ankacoder-condensed/package.nix
pkgs/data/fonts/ankacoder/default.nix pkgs/by-name/an/ankacoder/package.nix
-82
pkgs/data/fonts/arphic/default.nix
··· 1 - { 2 - lib, 3 - stdenvNoCC, 4 - fetchurl, 5 - mkfontdir, 6 - mkfontscale, 7 - }: 8 - 9 - let 10 - version = "0.2.20080216.2"; 11 - in 12 - { 13 - arphic-ukai = stdenvNoCC.mkDerivation rec { 14 - pname = "arphic-ukai"; 15 - inherit version; 16 - 17 - src = fetchurl { 18 - url = "mirror://ubuntu/pool/main/f/fonts-${pname}/fonts-${pname}_${version}.orig.tar.bz2"; 19 - hash = "sha256-tJaNc1GfT4dH6FVI+4XSG2Zdob8bqQCnxJmXbmqK49I="; 20 - }; 21 - 22 - nativeBuildInputs = [ 23 - mkfontscale 24 - mkfontdir 25 - ]; 26 - 27 - installPhase = '' 28 - runHook preInstall 29 - 30 - install -D -v ukai.ttc $out/share/fonts/truetype/arphic-ukai.ttc 31 - cd $out/share/fonts 32 - mkfontdir 33 - mkfontscale 34 - 35 - runHook postInstall 36 - ''; 37 - 38 - meta = with lib; { 39 - description = "CJK Unicode font Kai style"; 40 - homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; 41 - 42 - license = licenses.arphicpl; 43 - maintainers = [ maintainers.changlinli ]; 44 - platforms = platforms.all; 45 - }; 46 - }; 47 - 48 - arphic-uming = stdenvNoCC.mkDerivation rec { 49 - pname = "arphic-uming"; 50 - inherit version; 51 - 52 - src = fetchurl { 53 - url = "mirror://ubuntu/pool/main/f/fonts-${pname}/fonts-${pname}_${version}.orig.tar.bz2"; 54 - hash = "sha256-48GeBOp6VltKz/bx5CSAhNLhB1LjBb991sdugIYNwds="; 55 - }; 56 - 57 - nativeBuildInputs = [ 58 - mkfontscale 59 - mkfontdir 60 - ]; 61 - 62 - installPhase = '' 63 - runHook preInstall 64 - 65 - install -D -v uming.ttc $out/share/fonts/truetype/arphic-uming.ttc 66 - cd $out/share/fonts 67 - mkfontdir 68 - mkfontscale 69 - 70 - runHook postInstall 71 - ''; 72 - 73 - meta = with lib; { 74 - description = "CJK Unicode font Ming style"; 75 - homepage = "https://www.freedesktop.org/wiki/Software/CJKUnifonts/"; 76 - 77 - license = licenses.arphicpl; 78 - maintainers = [ maintainers.changlinli ]; 79 - platforms = platforms.all; 80 - }; 81 - }; 82 - }
···
pkgs/data/fonts/fira-code/default.nix pkgs/by-name/fi/fira-code/package.nix
pkgs/data/fonts/fira-code/symbols.nix pkgs/by-name/fi/fira-code-symbols/package.nix
pkgs/data/fonts/hackgen/default.nix pkgs/by-name/ha/hackgen-font/package.nix
pkgs/data/fonts/hackgen/nerdfont.nix pkgs/by-name/ha/hackgen-nf-font/package.nix
pkgs/data/fonts/inconsolata/default.nix pkgs/by-name/in/inconsolata/package.nix
pkgs/data/fonts/inconsolata/lgc.nix pkgs/by-name/in/inconsolata-lgc/package.nix
pkgs/data/fonts/input-fonts/default.nix pkgs/by-name/in/input-fonts/package.nix
pkgs/data/fonts/joypixels/default.nix pkgs/by-name/jo/joypixels/package.nix
+2 -2
pkgs/data/fonts/navilu/default.nix pkgs/by-name/na/navilu-font/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 fetchFromGitHub, 5 fontforge, 6 }: 7 8 - stdenv.mkDerivation rec { 9 pname = "navilu-font"; 10 version = "1.2"; 11
··· 1 { 2 lib, 3 + stdenvNoCC, 4 fetchFromGitHub, 5 fontforge, 6 }: 7 8 + stdenvNoCC.mkDerivation rec { 9 pname = "navilu-font"; 10 version = "1.2"; 11
pkgs/data/fonts/paratype-pt/mono.nix pkgs/by-name/pa/paratype-pt-mono/package.nix
pkgs/data/fonts/paratype-pt/sans.nix pkgs/by-name/pa/paratype-pt-sans/package.nix
pkgs/data/fonts/paratype-pt/serif.nix pkgs/by-name/pa/paratype-pt-serif/package.nix
+2 -2
pkgs/data/fonts/profont/default.nix pkgs/by-name/pr/profont/package.nix
··· 17 sha256 = "12dbm87wvcpmn7nzgzwlk45cybp091diara8blqm6129ps27z6kb"; 18 stripRoot = false; 19 } 20 - + /profont-x11; 21 22 srcOtb = 23 fetchzip { ··· 25 sha256 = "18rfhfqrsj3510by0w1a7ak5as6r2cxh8xv02xc1y30mfa6g24x6"; 26 stripRoot = false; 27 } 28 - + /profont-otb; 29 30 dontBuild = true; 31
··· 17 sha256 = "12dbm87wvcpmn7nzgzwlk45cybp091diara8blqm6129ps27z6kb"; 18 stripRoot = false; 19 } 20 + + "/profont-x11"; 21 22 srcOtb = 23 fetchzip { ··· 25 sha256 = "18rfhfqrsj3510by0w1a7ak5as6r2cxh8xv02xc1y30mfa6g24x6"; 26 stripRoot = false; 27 } 28 + + "/profont-otb"; 29 30 dontBuild = true; 31
-38
pkgs/data/fonts/tai-languages/default.nix
··· 1 - { 2 - lib, 3 - stdenvNoCC, 4 - fetchurl, 5 - }: 6 - 7 - { 8 - tai-ahom = stdenvNoCC.mkDerivation rec { 9 - pname = "tai-ahom"; 10 - version = "unstable-2015-07-06"; 11 - 12 - src = fetchurl { 13 - url = "https://github.com/enabling-languages/tai-languages/raw/b57a3ea4589af69bb8e87c6c4bb7cd367b52f0b7/ahom/.fonts/ttf/.original/AhomUnicode_FromMartin.ttf"; 14 - hash = "sha256-U1vcVf/VgXhvK1f2Iw2JKkd2EzJgz7KbHAwnUanX8n4="; 15 - }; 16 - 17 - dontUnpack = true; 18 - 19 - installPhase = '' 20 - runHook preInstall 21 - 22 - install -Dm644 $src $out/share/fonts/truetype/AhomUnicode.ttf 23 - 24 - runHook postInstall 25 - ''; 26 - 27 - meta = with lib; { 28 - homepage = "https://github.com/enabling-languages/tai-languages"; 29 - description = "Unicode-compliant Tai Ahom font"; 30 - maintainers = with maintainers; [ mathnerd314 ]; 31 - license = licenses.ofl; # See font metadata 32 - platforms = platforms.all; 33 - }; 34 - }; 35 - 36 - # TODO: package others (Khamti Shan, Tai Aiton, Tai Phake, and/or Assam Tai) 37 - 38 - }
···
+16 -5
pkgs/development/python-modules/clr-loader/default.nix
··· 19 inherit version; 20 hash = "sha256-AZNIrmtqg8ekBtFFN8J3zs96OlOyY+w0LIHe1YRaZ+4="; 21 }; 22 23 # This buildDotnetModule is used only to get nuget sources, the actual 24 # build is done in `buildPythonPackage` below. 25 dotnet-build = buildDotnetModule { 26 - inherit pname version src; 27 projectFile = [ 28 "netfx_loader/ClrLoader.csproj" 29 "example/example.csproj" 30 ]; 31 nugetDeps = ./deps.json; 32 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 33 }; 34 in 35 buildPythonPackage { 36 - inherit pname version src; 37 38 format = "pyproject"; 39 40 - buildInputs = dotnetCorePackages.sdk_6_0.packages ++ dotnet-build.nugetDeps; 41 42 nativeBuildInputs = [ 43 setuptools 44 setuptools-scm 45 wheel 46 - dotnetCorePackages.sdk_6_0 47 ]; 48 49 propagatedBuildInputs = [ cffi ];
··· 19 inherit version; 20 hash = "sha256-AZNIrmtqg8ekBtFFN8J3zs96OlOyY+w0LIHe1YRaZ+4="; 21 }; 22 + patches = [ ./dotnet-8-upgrade.patch ]; 23 24 # This buildDotnetModule is used only to get nuget sources, the actual 25 # build is done in `buildPythonPackage` below. 26 dotnet-build = buildDotnetModule { 27 + inherit 28 + pname 29 + version 30 + src 31 + patches 32 + ; 33 projectFile = [ 34 "netfx_loader/ClrLoader.csproj" 35 "example/example.csproj" 36 ]; 37 nugetDeps = ./deps.json; 38 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 39 }; 40 in 41 buildPythonPackage { 42 + inherit 43 + pname 44 + version 45 + src 46 + patches 47 + ; 48 49 format = "pyproject"; 50 51 + buildInputs = dotnetCorePackages.sdk_8_0.packages ++ dotnet-build.nugetDeps; 52 53 nativeBuildInputs = [ 54 setuptools 55 setuptools-scm 56 wheel 57 + dotnetCorePackages.sdk_8_0 58 ]; 59 60 propagatedBuildInputs = [ cffi ];
+6 -6
pkgs/development/python-modules/clr-loader/deps.json
··· 2 { 3 "pname": "Microsoft.NETCore.Platforms", 4 "version": "1.1.0", 5 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 6 }, 7 { 8 "pname": "Microsoft.NETFramework.ReferenceAssemblies", 9 "version": "1.0.0", 10 - "sha256": "0na724xhvqm63vq9y18fl9jw9q2v99bdwr353378s5fsi11qzxp9" 11 }, 12 { 13 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net461", 14 "version": "1.0.0", 15 - "sha256": "00vkn4c6i0rn1l9pv912y0wgb9h6ks76qah8hvk441nari8fqbm1" 16 }, 17 { 18 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net47", 19 "version": "1.0.0", 20 - "sha256": "00v56phfn01ahf4fq7zanz6hjyzpp00hkkk4a190l0dywrv387i6" 21 }, 22 { 23 "pname": "NETStandard.Library", 24 "version": "2.0.3", 25 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 26 }, 27 { 28 "pname": "NXPorts", 29 "version": "1.0.0", 30 - "sha256": "02zva596c3vsnlhi1b1391vbfl8a6142dvm61r8j1c70b07916lj" 31 } 32 ]
··· 2 { 3 "pname": "Microsoft.NETCore.Platforms", 4 "version": "1.1.0", 5 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 6 }, 7 { 8 "pname": "Microsoft.NETFramework.ReferenceAssemblies", 9 "version": "1.0.0", 10 + "hash": "sha256-6faPQ4jaFY3OGGVk3lZKW+DEZaIOBZ/wHqbiDTsRR1k=" 11 }, 12 { 13 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net461", 14 "version": "1.0.0", 15 + "hash": "sha256-oS7sUMzKBkLmhggqbI6eBqb1OPAipH0TDTaDaBixcwM=" 16 }, 17 { 18 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net47", 19 "version": "1.0.0", 20 + "hash": "sha256-Jh40dua+AQpSUGTOCQG493sJzbfqH+yIgyoA6+A1ZQM=" 21 }, 22 { 23 "pname": "NETStandard.Library", 24 "version": "2.0.3", 25 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 26 }, 27 { 28 "pname": "NXPorts", 29 "version": "1.0.0", 30 + "hash": "sha256-kpqQDljgsCBRDqbuJkgwClG3dkgjrBAhtXoPZlJR+ws=" 31 } 32 ]
+31
pkgs/development/python-modules/clr-loader/dotnet-8-upgrade.patch
···
··· 1 + diff --git a/example/example.csproj b/example/example.csproj 2 + index fd6d566..ed76d15 100644 3 + --- a/example/example.csproj 4 + +++ b/example/example.csproj 5 + @@ -1,6 +1,6 @@ 6 + <Project Sdk="Microsoft.NET.Sdk"> 7 + <PropertyGroup> 8 + - <TargetFrameworks>net60;netstandard20</TargetFrameworks> 9 + + <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks> 10 + <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> 11 + </PropertyGroup> 12 + <ItemGroup> 13 + diff --git a/tests/test_common.py b/tests/test_common.py 14 + index 8a9e36d..8370024 100644 15 + --- a/tests/test_common.py 16 + +++ b/tests/test_common.py 17 + @@ -8,12 +8,12 @@ from pathlib import Path 18 + 19 + @pytest.fixture(scope="session") 20 + def example_netstandard(tmpdir_factory): 21 + - return build_example(tmpdir_factory, "netstandard20") 22 + + return build_example(tmpdir_factory, "netstandard2.0") 23 + 24 + 25 + @pytest.fixture(scope="session") 26 + def example_netcore(tmpdir_factory): 27 + - return build_example(tmpdir_factory, "net60") 28 + + return build_example(tmpdir_factory, "net8.0") 29 + 30 + 31 + def build_example(tmpdir_factory, framework):
+2 -2
pkgs/development/python-modules/orange-canvas-core/default.nix
··· 32 33 buildPythonPackage rec { 34 pname = "orange-canvas-core"; 35 - version = "0.2.4"; 36 pyproject = true; 37 38 src = fetchFromGitHub { 39 owner = "biolab"; 40 repo = "orange-canvas-core"; 41 tag = version; 42 - hash = "sha256-tLFWOXsAhqxFV0wdlAKestO/F/rDtdFnKDd0FXPeNpg="; 43 }; 44 45 build-system = [ setuptools ];
··· 32 33 buildPythonPackage rec { 34 pname = "orange-canvas-core"; 35 + version = "0.2.5"; 36 pyproject = true; 37 38 src = fetchFromGitHub { 39 owner = "biolab"; 40 repo = "orange-canvas-core"; 41 tag = version; 42 + hash = "sha256-uh9wNqgLYRcnCSOdpeLx6ZTRC0cpq6lG/sqmrYLR+3g="; 43 }; 44 45 build-system = [ setuptools ];
+30 -23
pkgs/development/tools/ilspycmd/default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , buildDotnetModule 5 - , dotnetCorePackages 6 - , powershell 7 - , autoSignDarwinBinariesHook 8 - , glibcLocales 9 }: 10 - buildDotnetModule rec { 11 pname = "ilspycmd"; 12 - version = "8.0"; 13 14 src = fetchFromGitHub { 15 owner = "icsharpcode"; 16 repo = "ILSpy"; 17 rev = "v${version}"; 18 - hash = "sha256-ERBYXgpBRXISfqBSBEydEQuD/5T1dvJ+wNg2U5pKip4="; 19 }; 20 21 - nativeBuildInputs = [ 22 - powershell 23 - ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ autoSignDarwinBinariesHook ]; 24 25 # https://github.com/NixOS/nixpkgs/issues/38991 26 # bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) 27 - env.LOCALE_ARCHIVE = lib.optionalString stdenv.hostPlatform.isLinux "${glibcLocales}/lib/locale/locale-archive"; 28 29 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 30 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 31 32 projectFile = "ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj"; 33 nugetDeps = ./deps.json; ··· 35 # see: https://github.com/tunnelvisionlabs/ReferenceAssemblyAnnotator/issues/94 36 linkNugetPackages = true; 37 38 - meta = with lib; { 39 description = "Tool for decompiling .NET assemblies and generating portable PDBs"; 40 mainProgram = "ilspycmd"; 41 homepage = "https://github.com/icsharpcode/ILSpy"; 42 - changelog = "https://github.com/icsharpcode/ILSpy/releases/tag/${src.rev}"; 43 - license = with licenses; [ 44 mit 45 # third party dependencies 46 mspl 47 asl20 48 ]; 49 - sourceProvenance = with sourceTypes; [ fromSource binaryBytecode ]; 50 - maintainers = with maintainers; [ emilytrau ]; 51 }; 52 - }
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + buildDotnetModule, 6 + dotnetCorePackages, 7 + powershell, 8 + autoSignDarwinBinariesHook, 9 + glibcLocales, 10 }: 11 + buildDotnetModule (finalAttrs: rec { 12 pname = "ilspycmd"; 13 + version = "9.0-preview3"; 14 15 src = fetchFromGitHub { 16 owner = "icsharpcode"; 17 repo = "ILSpy"; 18 rev = "v${version}"; 19 + hash = "sha256-7cPXFaEKr76GtqcNsKx7tstRUeTpSTF8ggxbyEnQa9M="; 20 }; 21 22 + nativeBuildInputs = 23 + [ 24 + powershell 25 + ] 26 + ++ lib.optionals (stdenvNoCC.hostPlatform.isDarwin && stdenvNoCC.hostPlatform.isAarch64) [ 27 + autoSignDarwinBinariesHook 28 + ]; 29 30 # https://github.com/NixOS/nixpkgs/issues/38991 31 # bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8) 32 + env.LOCALE_ARCHIVE = lib.optionalString stdenvNoCC.hostPlatform.isLinux "${glibcLocales}/lib/locale/locale-archive"; 33 34 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 35 36 projectFile = "ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj"; 37 nugetDeps = ./deps.json; ··· 39 # see: https://github.com/tunnelvisionlabs/ReferenceAssemblyAnnotator/issues/94 40 linkNugetPackages = true; 41 42 + meta = { 43 description = "Tool for decompiling .NET assemblies and generating portable PDBs"; 44 mainProgram = "ilspycmd"; 45 homepage = "https://github.com/icsharpcode/ILSpy"; 46 + changelog = "https://github.com/icsharpcode/ILSpy/releases/tag/${finalAttrs.src.rev}"; 47 + license = with lib.licenses; [ 48 mit 49 # third party dependencies 50 mspl 51 asl20 52 ]; 53 + sourceProvenance = with lib.sourceTypes; [ 54 + fromSource 55 + binaryBytecode 56 + ]; 57 + maintainers = with lib.maintainers; [ emilytrau ]; 58 }; 59 + })
+184 -224
pkgs/development/tools/ilspycmd/deps.json
··· 1 [ 2 { 3 "pname": "K4os.Compression.LZ4", 4 - "version": "1.3.5", 5 - "sha256": "1nv9inhz0n25lhkw9xgp6g5xbqmcdccdhx6mwrli0pdp6hjmlh9k" 6 }, 7 { 8 "pname": "McMaster.Extensions.CommandLineUtils", 9 - "version": "3.1.0", 10 - "sha256": "075n1mfsxwz514r94l8i3ax0wp43c3xb4f9w25a96h6xxnj0k2hd" 11 }, 12 { 13 "pname": "Microsoft.Build.Tasks.Git", 14 - "version": "1.1.1", 15 - "sha256": "1bb5p4zlnfn88skkvymxfsn0jybqncl4356hwnic9jxdq2d4fz1w" 16 }, 17 { 18 - "pname": "Microsoft.NETCore.App.Ref", 19 "version": "6.0.0", 20 - "sha256": "1skgkralqkg2srvgvrmbsmya67f37gzk40lg28j8nz5mg8k8g0ia" 21 }, 22 { 23 - "pname": "Microsoft.NETCore.Platforms", 24 - "version": "1.1.0", 25 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 26 }, 27 { 28 - "pname": "Microsoft.NETCore.Targets", 29 - "version": "1.1.0", 30 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 31 }, 32 { 33 - "pname": "Microsoft.SourceLink.Common", 34 - "version": "1.1.1", 35 - "sha256": "0xkdqs7az2cprar7jzjlgjpd64l6f8ixcmwmpkdm03fyb4s5m0bg" 36 }, 37 { 38 - "pname": "Microsoft.SourceLink.GitHub", 39 - "version": "1.1.1", 40 - "sha256": "099y35f2npvva3jk1zp8hn0vb9pwm2l0ivjasdly6y2idv53s5yy" 41 }, 42 { 43 - "pname": "Mono.Cecil", 44 - "version": "0.11.4", 45 - "sha256": "1yxa7mh432s7g7p9r7scqxvxjk5ypwc567qdbf0gmk8fbf0d3f8y" 46 }, 47 { 48 - "pname": "NETStandard.Library", 49 - "version": "2.0.3", 50 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 51 }, 52 { 53 - "pname": "runtime.any.System.Collections", 54 - "version": "4.3.0", 55 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 56 }, 57 { 58 - "pname": "runtime.any.System.Globalization", 59 - "version": "4.3.0", 60 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 61 }, 62 { 63 - "pname": "runtime.any.System.IO", 64 - "version": "4.3.0", 65 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 66 }, 67 { 68 - "pname": "runtime.any.System.Reflection", 69 - "version": "4.3.0", 70 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 71 }, 72 { 73 - "pname": "runtime.any.System.Reflection.Primitives", 74 - "version": "4.3.0", 75 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 76 }, 77 { 78 - "pname": "runtime.any.System.Resources.ResourceManager", 79 - "version": "4.3.0", 80 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 81 }, 82 { 83 - "pname": "runtime.any.System.Runtime", 84 - "version": "4.3.0", 85 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 86 }, 87 { 88 - "pname": "runtime.any.System.Runtime.Handles", 89 - "version": "4.3.0", 90 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 91 }, 92 { 93 - "pname": "runtime.any.System.Runtime.InteropServices", 94 - "version": "4.3.0", 95 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 96 }, 97 { 98 - "pname": "runtime.any.System.Text.Encoding", 99 - "version": "4.3.0", 100 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 101 }, 102 { 103 - "pname": "runtime.any.System.Text.Encoding.Extensions", 104 - "version": "4.3.0", 105 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 106 }, 107 { 108 - "pname": "runtime.any.System.Threading.Tasks", 109 - "version": "4.3.0", 110 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 111 }, 112 { 113 - "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 114 - "version": "4.3.0", 115 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 116 }, 117 { 118 - "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 119 - "version": "4.3.0", 120 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 121 }, 122 { 123 - "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 124 - "version": "4.3.0", 125 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 126 }, 127 { 128 - "pname": "runtime.native.System", 129 - "version": "4.3.0", 130 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 131 }, 132 { 133 - "pname": "runtime.native.System.IO.Compression", 134 - "version": "4.3.0", 135 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 136 }, 137 { 138 - "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 139 - "version": "4.3.0", 140 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 141 }, 142 { 143 - "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 144 - "version": "4.3.0", 145 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 146 }, 147 { 148 - "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 149 - "version": "4.3.0", 150 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 151 }, 152 { 153 - "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 154 - "version": "4.3.0", 155 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 156 }, 157 { 158 - "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 159 - "version": "4.3.0", 160 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 161 }, 162 { 163 - "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 164 - "version": "4.3.0", 165 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 166 }, 167 { 168 - "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 169 - "version": "4.3.0", 170 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 171 }, 172 { 173 - "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 174 - "version": "4.3.0", 175 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 176 }, 177 { 178 - "pname": "runtime.unix.System.Diagnostics.Debug", 179 - "version": "4.3.0", 180 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 181 }, 182 { 183 - "pname": "runtime.unix.System.Private.Uri", 184 - "version": "4.3.0", 185 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 186 }, 187 { 188 - "pname": "runtime.unix.System.Runtime.Extensions", 189 - "version": "4.3.0", 190 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 191 }, 192 { 193 - "pname": "System.Buffers", 194 - "version": "4.5.1", 195 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 196 }, 197 { 198 - "pname": "System.Collections", 199 - "version": "4.3.0", 200 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 201 }, 202 { 203 - "pname": "System.Collections.Immutable", 204 - "version": "6.0.0", 205 - "sha256": "1js98kmjn47ivcvkjqdmyipzknb9xbndssczm8gq224pbaj1p88c" 206 }, 207 { 208 - "pname": "System.Collections.Immutable", 209 - "version": "7.0.0", 210 - "sha256": "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm" 211 }, 212 { 213 - "pname": "System.ComponentModel.Annotations", 214 - "version": "5.0.0", 215 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 216 }, 217 { 218 - "pname": "System.Composition", 219 - "version": "6.0.0", 220 - "sha256": "1p7hysns39cc24af6dwd4m48bqjsrr3clvi4aws152mh2fgyg50z" 221 }, 222 { 223 - "pname": "System.Composition.AttributedModel", 224 - "version": "6.0.0", 225 - "sha256": "1mqrblb0l65hw39d0hnspqcv85didpn4wbiwhfgj4784wzqx2w6k" 226 }, 227 { 228 - "pname": "System.Composition.Convention", 229 - "version": "6.0.0", 230 - "sha256": "02km3yb94p1c4s7liyhkmda0g71zm1rc8ijsfmy4bnlkq15xjw3b" 231 }, 232 { 233 - "pname": "System.Composition.Hosting", 234 - "version": "6.0.0", 235 - "sha256": "0big5nk8c44rxp6cfykhk7rxvn2cgwa99w6c3v2a36adc3lj36ky" 236 }, 237 { 238 - "pname": "System.Composition.Runtime", 239 - "version": "6.0.0", 240 - "sha256": "0vq5ik63yii1784gsa2f2kx9w6xllmm8b8rk0arid1jqdj1nyrlw" 241 }, 242 { 243 - "pname": "System.Composition.TypedParts", 244 - "version": "6.0.0", 245 - "sha256": "0y9pq3y60nyrpfy51f576a0qjjdh61mcv8vnik32pm4bz56h9q72" 246 }, 247 { 248 - "pname": "System.Diagnostics.Debug", 249 - "version": "4.3.0", 250 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 251 }, 252 { 253 - "pname": "System.Globalization", 254 - "version": "4.3.0", 255 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 256 }, 257 { 258 - "pname": "System.IO", 259 - "version": "4.3.0", 260 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 261 }, 262 { 263 - "pname": "System.IO.Compression", 264 - "version": "4.3.0", 265 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 266 }, 267 { 268 - "pname": "System.IO.FileSystem.Primitives", 269 - "version": "4.3.0", 270 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 271 }, 272 { 273 "pname": "System.Memory", 274 "version": "4.5.4", 275 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 276 }, 277 { 278 "pname": "System.Numerics.Vectors", 279 "version": "4.4.0", 280 - "sha256": "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba" 281 - }, 282 - { 283 - "pname": "System.Private.Uri", 284 - "version": "4.3.0", 285 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 286 - }, 287 - { 288 - "pname": "System.Reflection", 289 - "version": "4.3.0", 290 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 291 }, 292 { 293 "pname": "System.Reflection.Metadata", 294 "version": "6.0.0", 295 - "sha256": "1x0b289r9yjzdqypi2x3dc8sa66s3b6bpc7l2f8hxrzl6czdg4al" 296 }, 297 { 298 "pname": "System.Reflection.Metadata", 299 - "version": "7.0.0", 300 - "sha256": "1wilasn2qmj870h2bhw348lspamm7pbinpb4m89icg113510l00v" 301 - }, 302 - { 303 - "pname": "System.Reflection.Primitives", 304 - "version": "4.3.0", 305 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 306 - }, 307 - { 308 - "pname": "System.Resources.ResourceManager", 309 - "version": "4.3.0", 310 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 311 - }, 312 - { 313 - "pname": "System.Runtime", 314 - "version": "4.3.0", 315 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 316 }, 317 { 318 "pname": "System.Runtime.CompilerServices.Unsafe", 319 "version": "6.0.0", 320 - "sha256": "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc" 321 }, 322 { 323 - "pname": "System.Runtime.Extensions", 324 - "version": "4.3.0", 325 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 326 }, 327 { 328 - "pname": "System.Runtime.Handles", 329 - "version": "4.3.0", 330 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 331 }, 332 { 333 - "pname": "System.Runtime.InteropServices", 334 - "version": "4.3.0", 335 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 336 - }, 337 - { 338 - "pname": "System.Runtime.Loader", 339 - "version": "4.3.0", 340 - "sha256": "07fgipa93g1xxgf7193a6vw677mpzgr0z0cfswbvqqb364cva8dk" 341 - }, 342 - { 343 - "pname": "System.Text.Encoding", 344 - "version": "4.3.0", 345 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 346 - }, 347 - { 348 - "pname": "System.Text.Encoding.Extensions", 349 - "version": "4.3.0", 350 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 351 - }, 352 - { 353 - "pname": "System.Threading", 354 - "version": "4.3.0", 355 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 356 - }, 357 - { 358 - "pname": "System.Threading.Tasks", 359 - "version": "4.3.0", 360 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 361 }, 362 { 363 "pname": "TunnelVisionLabs.ReferenceAssemblyAnnotator", 364 "version": "1.0.0-alpha.160", 365 - "sha256": "1wvfa3098a984kydjgjvx43gncnr89fw20if2gqvz8kqn9pxqjbq" 366 } 367 ]
··· 1 [ 2 { 3 "pname": "K4os.Compression.LZ4", 4 + "version": "1.3.8", 5 + "hash": "sha256-OmT3JwO4qpkZDL7XqiFqZCyxySj64s9t+mXcN1T+IyA=" 6 }, 7 { 8 "pname": "McMaster.Extensions.CommandLineUtils", 9 + "version": "4.1.1", 10 + "hash": "sha256-K10ukfRqcRIKJT7PFxc7NFpKWRT+FIDg8IJAR8HA5Eo=" 11 + }, 12 + { 13 + "pname": "McMaster.Extensions.Hosting.CommandLine", 14 + "version": "4.1.1", 15 + "hash": "sha256-Qz4rSwi0vE5CmwGolmASB92/XZsKlz/QC+pdRITVKHA=" 16 }, 17 { 18 "pname": "Microsoft.Build.Tasks.Git", 19 + "version": "8.0.0", 20 + "hash": "sha256-vX6/kPij8vNAu8f7rrvHHhPrNph20IcufmrBgZNxpQA=" 21 + }, 22 + { 23 + "pname": "Microsoft.Extensions.Configuration", 24 + "version": "8.0.0", 25 + "hash": "sha256-9BPsASlxrV8ilmMCjdb3TiUcm5vFZxkBnAI/fNBSEyA=" 26 }, 27 { 28 + "pname": "Microsoft.Extensions.Configuration.Abstractions", 29 "version": "6.0.0", 30 + "hash": "sha256-Evg+Ynj2QUa6Gz+zqF+bUyfGD0HI5A2fHmxZEXbn3HA=" 31 }, 32 { 33 + "pname": "Microsoft.Extensions.Configuration.Abstractions", 34 + "version": "8.0.0", 35 + "hash": "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o=" 36 }, 37 { 38 + "pname": "Microsoft.Extensions.Configuration.Binder", 39 + "version": "8.0.2", 40 + "hash": "sha256-aGB0VuoC34YadAEqrwoaXLc5qla55pswDV2xLSmR7SE=" 41 }, 42 { 43 + "pname": "Microsoft.Extensions.Configuration.CommandLine", 44 + "version": "8.0.0", 45 + "hash": "sha256-fmPC/o8S+weTtQJWykpnGHm6AKVU21xYE/CaHYU7zgg=" 46 }, 47 { 48 + "pname": "Microsoft.Extensions.Configuration.EnvironmentVariables", 49 + "version": "8.0.0", 50 + "hash": "sha256-+bjFZvqCsMf2FRM2olqx/fub+QwfM1kBhjGVOT5HC48=" 51 }, 52 { 53 + "pname": "Microsoft.Extensions.Configuration.FileExtensions", 54 + "version": "8.0.1", 55 + "hash": "sha256-iRA8L7BX/fe5LHCVOhzBSk30GfshP7V2Qj2nxpEvStA=" 56 }, 57 { 58 + "pname": "Microsoft.Extensions.Configuration.Json", 59 + "version": "8.0.1", 60 + "hash": "sha256-J8EK/yhsfTpeSUY8F81ZTBV9APHiPUliN7d+n2OX9Ig=" 61 }, 62 { 63 + "pname": "Microsoft.Extensions.Configuration.UserSecrets", 64 + "version": "8.0.1", 65 + "hash": "sha256-yGvWfwBhyFudcIv96pKWaQ1MIMOiv5LHSCn+9J7Doz0=" 66 }, 67 { 68 + "pname": "Microsoft.Extensions.DependencyInjection", 69 + "version": "8.0.1", 70 + "hash": "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU=" 71 }, 72 { 73 + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 74 + "version": "6.0.0", 75 + "hash": "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4=" 76 }, 77 { 78 + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 79 + "version": "8.0.2", 80 + "hash": "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY=" 81 }, 82 { 83 + "pname": "Microsoft.Extensions.Diagnostics", 84 + "version": "8.0.1", 85 + "hash": "sha256-CraHNCaVlMiYx6ff9afT6U7RC/MoOCXM3pn2KrXkiLc=" 86 }, 87 { 88 + "pname": "Microsoft.Extensions.Diagnostics.Abstractions", 89 + "version": "8.0.1", 90 + "hash": "sha256-d5DVXhA8qJFY9YbhZjsTqs5w5kDuxF5v+GD/WZR1QL0=" 91 }, 92 { 93 + "pname": "Microsoft.Extensions.FileProviders.Abstractions", 94 + "version": "6.0.0", 95 + "hash": "sha256-uBjWjHKEXjZ9fDfFxMjOou3lhfTNhs1yO+e3fpWreLk=" 96 }, 97 { 98 + "pname": "Microsoft.Extensions.FileProviders.Abstractions", 99 + "version": "8.0.0", 100 + "hash": "sha256-uQSXmt47X2HGoVniavjLICbPtD2ReQOYQMgy3l0xuMU=" 101 }, 102 { 103 + "pname": "Microsoft.Extensions.FileProviders.Physical", 104 + "version": "8.0.0", 105 + "hash": "sha256-29y5ZRQ1ZgzVOxHktYxyiH40kVgm5un2yTGdvuSWnRc=" 106 }, 107 { 108 + "pname": "Microsoft.Extensions.FileSystemGlobbing", 109 + "version": "8.0.0", 110 + "hash": "sha256-+Oz41JR5jdcJlCJOSpQIL5OMBNi+1Hl2d0JUHfES7sU=" 111 }, 112 { 113 + "pname": "Microsoft.Extensions.Hosting", 114 + "version": "8.0.1", 115 + "hash": "sha256-FFLo6em0N2vaWg6//vaQhxoOgT9LLH5Y2KWkCeX5xQ4=" 116 }, 117 { 118 + "pname": "Microsoft.Extensions.Hosting.Abstractions", 119 + "version": "6.0.0", 120 + "hash": "sha256-ksIPO6RhfbYx/i3su4J3sDhoL+TDnITKsgIpEqnpktc=" 121 }, 122 { 123 + "pname": "Microsoft.Extensions.Hosting.Abstractions", 124 + "version": "8.0.1", 125 + "hash": "sha256-/bIVL9uvBQhV/KQmjA1ZjR74sMfaAlBb15sVXsGDEVA=" 126 }, 127 { 128 + "pname": "Microsoft.Extensions.Logging", 129 + "version": "8.0.1", 130 + "hash": "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU=" 131 }, 132 { 133 + "pname": "Microsoft.Extensions.Logging.Abstractions", 134 + "version": "6.0.0", 135 + "hash": "sha256-QNqcQ3x+MOK7lXbWkCzSOWa/2QyYNbdM/OEEbWN15Sw=" 136 }, 137 { 138 + "pname": "Microsoft.Extensions.Logging.Abstractions", 139 + "version": "8.0.2", 140 + "hash": "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc=" 141 }, 142 { 143 + "pname": "Microsoft.Extensions.Logging.Configuration", 144 + "version": "8.0.1", 145 + "hash": "sha256-E2JbJG2EXlv2HUWLi17kIkAL6RC9rC2E18C3gAyOuaE=" 146 }, 147 { 148 + "pname": "Microsoft.Extensions.Logging.Console", 149 + "version": "8.0.1", 150 + "hash": "sha256-2thhF1JbDNj3Bx2fcH7O26uHGNeMd9MYah6N60lIpIU=" 151 }, 152 { 153 + "pname": "Microsoft.Extensions.Logging.Debug", 154 + "version": "8.0.1", 155 + "hash": "sha256-gKFqBg5lbjy5VBEcAuoQ/SsXAxvrYdBYOu9dV60eJKg=" 156 }, 157 { 158 + "pname": "Microsoft.Extensions.Logging.EventLog", 159 + "version": "8.0.1", 160 + "hash": "sha256-1UkEOwl3Op2b3jTvpI10hHxIe9FqeVVy+VB1tZp6Lc8=" 161 }, 162 { 163 + "pname": "Microsoft.Extensions.Logging.EventSource", 164 + "version": "8.0.1", 165 + "hash": "sha256-EINT/PgfB4Dvf+1JBzL1plPT35ezT7kyS8y/XMMgYxA=" 166 }, 167 { 168 + "pname": "Microsoft.Extensions.Options", 169 + "version": "8.0.2", 170 + "hash": "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys=" 171 }, 172 { 173 + "pname": "Microsoft.Extensions.Options.ConfigurationExtensions", 174 + "version": "8.0.0", 175 + "hash": "sha256-A5Bbzw1kiNkgirk5x8kyxwg9lLTcSngojeD+ocpG1RI=" 176 }, 177 { 178 + "pname": "Microsoft.Extensions.Primitives", 179 + "version": "6.0.0", 180 + "hash": "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4=" 181 }, 182 { 183 + "pname": "Microsoft.Extensions.Primitives", 184 + "version": "8.0.0", 185 + "hash": "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo=" 186 }, 187 { 188 + "pname": "Microsoft.NETCore.App.Ref", 189 + "version": "8.0.0", 190 + "hash": "sha256-yTkWSH0P4IsKl+fAX9tapyug3omJQ4wxMWcMYhBc20M=" 191 }, 192 { 193 + "pname": "Microsoft.NETCore.Platforms", 194 + "version": "1.1.0", 195 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 196 }, 197 { 198 + "pname": "Microsoft.SourceLink.Common", 199 + "version": "8.0.0", 200 + "hash": "sha256-AfUqleVEqWuHE7z2hNiwOLnquBJ3tuYtbkdGMppHOXc=" 201 }, 202 { 203 + "pname": "Microsoft.SourceLink.GitHub", 204 + "version": "8.0.0", 205 + "hash": "sha256-hNTkpKdCLY5kIuOmznD1mY+pRdJ0PKu2HypyXog9vb0=" 206 }, 207 { 208 + "pname": "Mono.Cecil", 209 + "version": "0.11.6", 210 + "hash": "sha256-0qI4MqqpSLqaAazEK1cm40xfmVlY8bMNRcDnxws6ctU=" 211 }, 212 { 213 + "pname": "NETStandard.Library", 214 + "version": "2.0.3", 215 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 216 }, 217 { 218 + "pname": "Newtonsoft.Json", 219 + "version": "13.0.3", 220 + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" 221 }, 222 { 223 + "pname": "NuGet.Common", 224 + "version": "6.11.1", 225 + "hash": "sha256-UyZtDyTuymC+sKSX+ripOI6MmJZn11loVapVs4uzaGo=" 226 }, 227 { 228 + "pname": "NuGet.Configuration", 229 + "version": "6.11.1", 230 + "hash": "sha256-JH2UCpjYg8pkqxQ4j4BrWiTKhGzgfn55NMr32wf6+FQ=" 231 }, 232 { 233 + "pname": "NuGet.Frameworks", 234 + "version": "6.11.1", 235 + "hash": "sha256-p25Oa7wJjwF+2puIhBkZZkKSuk4jGq7xikYSCdfp9Vc=" 236 }, 237 { 238 + "pname": "NuGet.Packaging", 239 + "version": "6.11.1", 240 + "hash": "sha256-1yY3p5hQwbUgYCyHnBcuGWiiIib1ppPYt2ntxwXSJW0=" 241 }, 242 { 243 + "pname": "NuGet.Protocol", 244 + "version": "6.11.1", 245 + "hash": "sha256-/zFvBV83Q5oMNu68BjmrHtZMAxf/YkDJV8HSsl5GjsY=" 246 }, 247 { 248 + "pname": "NuGet.Versioning", 249 + "version": "6.11.1", 250 + "hash": "sha256-fl8lyChMjV7Sp8keAP7CdXZh7ARN/mU39T3gG74jDWY=" 251 }, 252 { 253 + "pname": "System.Buffers", 254 + "version": "4.5.1", 255 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 256 }, 257 { 258 + "pname": "System.Collections.Immutable", 259 + "version": "6.0.0", 260 + "hash": "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs=" 261 }, 262 { 263 + "pname": "System.ComponentModel.Annotations", 264 + "version": "5.0.0", 265 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 266 }, 267 { 268 + "pname": "System.Composition.AttributedModel", 269 + "version": "8.0.0", 270 + "hash": "sha256-n3aXiBAFIlQicSRLiNtLh++URSUxRBLggsjJ8OMNRpo=" 271 }, 272 { 273 + "pname": "System.Diagnostics.EventLog", 274 + "version": "8.0.1", 275 + "hash": "sha256-zvqd72pwgcGoa1nH3ZT1C0mP9k53vFLJ69r5MCQ1saA=" 276 }, 277 { 278 + "pname": "System.Formats.Asn1", 279 + "version": "6.0.0", 280 + "hash": "sha256-KaMHgIRBF7Nf3VwOo+gJS1DcD+41cJDPWFh+TDQ8ee8=" 281 }, 282 { 283 "pname": "System.Memory", 284 "version": "4.5.4", 285 + "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" 286 }, 287 { 288 "pname": "System.Numerics.Vectors", 289 "version": "4.4.0", 290 + "hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=" 291 }, 292 { 293 "pname": "System.Reflection.Metadata", 294 "version": "6.0.0", 295 + "hash": "sha256-VJHXPjP05w6RE/Swu8wa2hilEWuji3g9bl/6lBMSC/Q=" 296 }, 297 { 298 "pname": "System.Reflection.Metadata", 299 + "version": "8.0.1", 300 + "hash": "sha256-Swip1XuTs/r2m4RKuG5BXXxcaNGRh+jbMnjFRNdL87U=" 301 }, 302 { 303 "pname": "System.Runtime.CompilerServices.Unsafe", 304 "version": "6.0.0", 305 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 306 }, 307 { 308 + "pname": "System.Security.Cryptography.Pkcs", 309 + "version": "6.0.4", 310 + "hash": "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI=" 311 }, 312 { 313 + "pname": "System.Security.Cryptography.ProtectedData", 314 + "version": "4.4.0", 315 + "hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=" 316 }, 317 { 318 + "pname": "TomsToolbox.Composition.Analyzer", 319 + "version": "2.20.0", 320 + "hash": "sha256-xjWXdkXF8X9nDdzLNA2H1WcpPZV4NDiKf//TeQbLUtc=" 321 }, 322 { 323 "pname": "TunnelVisionLabs.ReferenceAssemblyAnnotator", 324 "version": "1.0.0-alpha.160", 325 + "hash": "sha256-eEncb7J4or/xEy4CwV1C2TL7BulbPtn8JCgplMBQbvM=" 326 } 327 ]
-96
pkgs/servers/jellyseerr/default.nix
··· 1 - { 2 - lib, 3 - mkYarnPackage, 4 - fetchFromGitHub, 5 - fetchYarnDeps, 6 - makeWrapper, 7 - node-pre-gyp, 8 - nodejs, 9 - python3, 10 - sqlite, 11 - }: 12 - 13 - mkYarnPackage rec { 14 - pname = "jellyseerr"; 15 - version = "1.9.2"; 16 - 17 - src = fetchFromGitHub { 18 - owner = "Fallenbagel"; 19 - repo = "jellyseerr"; 20 - rev = "v${version}"; 21 - hash = "sha256-TXe/k/pb7idu7G1wGu6TZksnoFQ5/PN0voVlve3k1UI="; 22 - }; 23 - 24 - packageJSON = ./package.json; 25 - 26 - offlineCache = fetchYarnDeps { 27 - yarnLock = "${src}/yarn.lock"; 28 - hash = "sha256-2iRxguxEI+YKm8ddhRgZMvfZuUgQmCK5ER4jMCFJQMQ="; 29 - }; 30 - 31 - nativeBuildInputs = [ 32 - nodejs 33 - makeWrapper 34 - ]; 35 - 36 - # Fixes "SQLite package has not been found installed" at launch 37 - pkgConfig.sqlite3 = { 38 - nativeBuildInputs = [ 39 - node-pre-gyp 40 - python3 41 - sqlite 42 - ]; 43 - postInstall = '' 44 - export CPPFLAGS="-I${nodejs}/include/node" 45 - node-pre-gyp install --prefer-offline --build-from-source --nodedir=${nodejs}/include/node --sqlite=${sqlite.dev} 46 - rm -r build-tmp-napi-v6 47 - ''; 48 - }; 49 - 50 - pkgConfig.bcrypt = { 51 - nativeBuildInputs = [ 52 - node-pre-gyp 53 - python3 54 - ]; 55 - postInstall = '' 56 - export CPPFLAGS="-I${nodejs}/include/node" 57 - node-pre-gyp install --prefer-offline --build-from-source --nodedir=${nodejs}/include/node 58 - ''; 59 - }; 60 - 61 - buildPhase = '' 62 - runHook preBuild 63 - ( 64 - shopt -s dotglob 65 - cd deps/jellyseerr 66 - rm -r config/* 67 - yarn build 68 - rm -r .next/cache 69 - ) 70 - runHook postBuild 71 - ''; 72 - 73 - postInstall = '' 74 - makeWrapper '${nodejs}/bin/node' "$out/bin/jellyseerr" \ 75 - --add-flags "$out/libexec/jellyseerr/deps/jellyseerr/dist/index.js" \ 76 - --set NODE_ENV production 77 - ''; 78 - 79 - doDist = false; 80 - 81 - passthru.updateScript = ./update.sh; 82 - 83 - meta = with lib; { 84 - description = "Fork of overseerr for jellyfin support"; 85 - homepage = "https://github.com/Fallenbagel/jellyseerr"; 86 - longDescription = '' 87 - Jellyseerr is a free and open source software application for managing 88 - requests for your media library. It is a a fork of Overseerr built to 89 - bring support for Jellyfin & Emby media servers! 90 - ''; 91 - license = licenses.mit; 92 - maintainers = with maintainers; [ camillemndn ]; 93 - platforms = platforms.linux; 94 - mainProgram = "jellyseerr"; 95 - }; 96 - }
···
-247
pkgs/servers/jellyseerr/package.json
··· 1 - { 2 - "name": "jellyseerr", 3 - "version": "1.9.2", 4 - "private": true, 5 - "scripts": { 6 - "dev": "nodemon -e ts --watch server --watch overseerr-api.yml -e .json,.ts,.yml -x ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/index.ts", 7 - "build:server": "tsc --project server/tsconfig.json && copyfiles -u 2 server/templates/**/*.{html,pug} dist/templates && tsc-alias -p server/tsconfig.json", 8 - "build:next": "next build", 9 - "build": "yarn build:next && yarn build:server", 10 - "lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\" --cache", 11 - "lintfix": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\" --fix", 12 - "start": "NODE_ENV=production node dist/index.js", 13 - "i18n:extract": "extract-messages -l=en -o src/i18n/locale -d en --flat true --overwriteDefault true \"./src/**/!(*.test).{ts,tsx}\"", 14 - "migration:generate": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:generate -d server/datasource.ts", 15 - "migration:create": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:create -d server/datasource.ts", 16 - "migration:run": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:run -d server/datasource.ts", 17 - "format": "prettier --loglevel warn --write --cache .", 18 - "format:check": "prettier --check --cache .", 19 - "typecheck": "yarn typecheck:server && yarn typecheck:client", 20 - "typecheck:server": "tsc --project server/tsconfig.json --noEmit", 21 - "typecheck:client": "tsc --noEmit", 22 - "prepare": "husky install", 23 - "cypress:open": "cypress open", 24 - "cypress:prepare": "ts-node -r tsconfig-paths/register --files --project server/tsconfig.json server/scripts/prepareTestDb.ts", 25 - "cypress:build": "yarn build && yarn cypress:prepare" 26 - }, 27 - "repository": { 28 - "type": "git", 29 - "url": "https://github.com/fallenbagel/jellyseerr.git" 30 - }, 31 - "license": "MIT", 32 - "dependencies": { 33 - "@formatjs/intl-displaynames": "6.2.6", 34 - "@formatjs/intl-locale": "3.1.1", 35 - "@formatjs/intl-pluralrules": "5.1.10", 36 - "@formatjs/intl-utils": "3.8.4", 37 - "@headlessui/react": "1.7.12", 38 - "@heroicons/react": "2.0.16", 39 - "@supercharge/request-ip": "1.2.0", 40 - "@svgr/webpack": "6.5.1", 41 - "@tanem/react-nprogress": "5.0.30", 42 - "ace-builds": "1.15.2", 43 - "axios": "1.3.4", 44 - "axios-rate-limit": "1.3.0", 45 - "bcrypt": "5.1.0", 46 - "bowser": "2.11.0", 47 - "cacheable-lookup": "^7.0.0", 48 - "connect-typeorm": "1.1.4", 49 - "cookie-parser": "1.4.6", 50 - "copy-to-clipboard": "3.3.3", 51 - "country-flag-icons": "1.5.5", 52 - "cronstrue": "2.23.0", 53 - "csurf": "1.11.0", 54 - "date-fns": "2.29.3", 55 - "dayjs": "1.11.7", 56 - "email-templates": "9.0.0", 57 - "email-validator": "2.0.4", 58 - "express": "4.18.2", 59 - "express-openapi-validator": "4.13.8", 60 - "express-rate-limit": "6.7.0", 61 - "express-session": "1.17.3", 62 - "formik": "2.2.9", 63 - "gravatar-url": "3.1.0", 64 - "intl": "1.2.5", 65 - "lodash": "4.17.21", 66 - "next": "12.3.4", 67 - "node-cache": "5.1.2", 68 - "node-gyp": "9.3.1", 69 - "node-schedule": "2.1.1", 70 - "nodemailer": "6.9.1", 71 - "openpgp": "5.7.0", 72 - "plex-api": "5.3.2", 73 - "pug": "3.0.2", 74 - "react": "18.2.0", 75 - "react-ace": "10.1.0", 76 - "react-animate-height": "2.1.2", 77 - "react-aria": "3.23.0", 78 - "react-dom": "18.2.0", 79 - "react-intersection-observer": "9.4.3", 80 - "react-intl": "6.2.10", 81 - "react-markdown": "8.0.5", 82 - "react-popper-tooltip": "4.4.2", 83 - "react-select": "5.7.0", 84 - "react-spring": "9.7.1", 85 - "react-tailwindcss-datepicker-sct": "1.3.4", 86 - "react-toast-notifications": "2.5.1", 87 - "react-truncate-markup": "5.1.2", 88 - "react-use-clipboard": "1.0.9", 89 - "reflect-metadata": "0.1.13", 90 - "secure-random-password": "0.2.3", 91 - "semver": "7.3.8", 92 - "sqlite3": "5.1.4", 93 - "swagger-ui-express": "4.6.2", 94 - "swr": "2.0.4", 95 - "typeorm": "0.3.12", 96 - "web-push": "3.5.0", 97 - "winston": "3.8.2", 98 - "winston-daily-rotate-file": "4.7.1", 99 - "xml2js": "0.4.23", 100 - "yamljs": "0.3.0", 101 - "yup": "0.32.11", 102 - "zod": "3.20.6" 103 - }, 104 - "devDependencies": { 105 - "@babel/cli": "7.21.0", 106 - "@commitlint/cli": "17.4.4", 107 - "@commitlint/config-conventional": "17.4.4", 108 - "@semantic-release/changelog": "6.0.2", 109 - "@semantic-release/commit-analyzer": "9.0.2", 110 - "@semantic-release/exec": "6.0.3", 111 - "@semantic-release/git": "10.0.1", 112 - "@tailwindcss/aspect-ratio": "0.4.2", 113 - "@tailwindcss/forms": "0.5.3", 114 - "@tailwindcss/typography": "0.5.9", 115 - "@types/bcrypt": "5.0.0", 116 - "@types/cookie-parser": "1.4.3", 117 - "@types/country-flag-icons": "1.2.0", 118 - "@types/csurf": "1.11.2", 119 - "@types/email-templates": "8.0.4", 120 - "@types/express": "4.17.17", 121 - "@types/express-session": "1.17.6", 122 - "@types/lodash": "4.14.191", 123 - "@types/node": "17.0.36", 124 - "@types/node-schedule": "2.1.0", 125 - "@types/nodemailer": "6.4.7", 126 - "@types/react": "18.0.28", 127 - "@types/react-dom": "18.0.11", 128 - "@types/react-transition-group": "4.4.5", 129 - "@types/secure-random-password": "0.2.1", 130 - "@types/semver": "7.3.13", 131 - "@types/swagger-ui-express": "4.1.3", 132 - "@types/web-push": "3.3.2", 133 - "@types/xml2js": "0.4.11", 134 - "@types/yamljs": "0.2.31", 135 - "@types/yup": "0.29.14", 136 - "@typescript-eslint/eslint-plugin": "5.54.0", 137 - "@typescript-eslint/parser": "5.54.0", 138 - "autoprefixer": "10.4.13", 139 - "babel-plugin-react-intl": "8.2.25", 140 - "babel-plugin-react-intl-auto": "3.3.0", 141 - "commitizen": "4.3.0", 142 - "copyfiles": "2.4.1", 143 - "cy-mobile-commands": "0.3.0", 144 - "cypress": "12.7.0", 145 - "cz-conventional-changelog": "3.3.0", 146 - "eslint": "8.35.0", 147 - "eslint-config-next": "12.3.4", 148 - "eslint-config-prettier": "8.6.0", 149 - "eslint-plugin-formatjs": "4.9.0", 150 - "eslint-plugin-jsx-a11y": "6.7.1", 151 - "eslint-plugin-no-relative-import-paths": "1.5.2", 152 - "eslint-plugin-prettier": "4.2.1", 153 - "eslint-plugin-react": "7.32.2", 154 - "eslint-plugin-react-hooks": "4.6.0", 155 - "extract-react-intl-messages": "4.1.1", 156 - "husky": "8.0.3", 157 - "lint-staged": "13.1.2", 158 - "nodemon": "2.0.20", 159 - "postcss": "8.4.21", 160 - "prettier": "2.8.4", 161 - "prettier-plugin-organize-imports": "3.2.2", 162 - "prettier-plugin-tailwindcss": "0.2.3", 163 - "semantic-release": "19.0.5", 164 - "semantic-release-docker-buildx": "1.0.1", 165 - "tailwindcss": "3.2.7", 166 - "ts-node": "10.9.1", 167 - "tsc-alias": "1.8.2", 168 - "tsconfig-paths": "4.1.2", 169 - "typescript": "4.9.5" 170 - }, 171 - "resolutions": { 172 - "sqlite3/node-gyp": "8.4.1", 173 - "@types/react": "18.0.28", 174 - "@types/react-dom": "18.0.11", 175 - "@types/express-session": "1.17.6" 176 - }, 177 - "config": { 178 - "commitizen": { 179 - "path": "./node_modules/cz-conventional-changelog" 180 - } 181 - }, 182 - "lint-staged": { 183 - "**/*.{ts,tsx,js}": [ 184 - "prettier --write", 185 - "eslint" 186 - ], 187 - "**/*.{json,md,css}": [ 188 - "prettier --write" 189 - ] 190 - }, 191 - "commitlint": { 192 - "extends": [ 193 - "@commitlint/config-conventional" 194 - ] 195 - }, 196 - "release": { 197 - "plugins": [ 198 - "@semantic-release/commit-analyzer", 199 - "@semantic-release/release-notes-generator", 200 - [ 201 - "@semantic-release/changelog", 202 - { 203 - "changelogFile": "CHANGELOG.md" 204 - } 205 - ], 206 - "@semantic-release/npm", 207 - [ 208 - "@semantic-release/git", 209 - { 210 - "assets": [ 211 - "package.json", 212 - "CHANGELOG.md" 213 - ], 214 - "message": "chore(release): ${nextRelease.version}" 215 - } 216 - ], 217 - "semantic-release-docker-buildx", 218 - [ 219 - "@semantic-release/github", 220 - { 221 - "addReleases": "bottom" 222 - } 223 - ] 224 - ], 225 - "branches": [ 226 - "main" 227 - ], 228 - "npmPublish": false, 229 - "publish": [ 230 - { 231 - "path": "semantic-release-docker-buildx", 232 - "buildArgs": { 233 - "COMMIT_TAG": "$GIT_SHA" 234 - }, 235 - "imageNames": [ 236 - "fallenbagel/jellyseerr" 237 - ], 238 - "platforms": [ 239 - "linux/amd64", 240 - "linux/arm64", 241 - "linux/arm/v7" 242 - ] 243 - }, 244 - "@semantic-release/github" 245 - ] 246 - } 247 - }
···
-16
pkgs/servers/jellyseerr/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p curl jq common-updater-scripts nix prefetch-yarn-deps 3 - 4 - set -eu -o pipefail 5 - 6 - version=${1:-$(curl -s https://api.github.com/repos/Fallenbagel/jellyseerr/releases/latest | jq --raw-output '.tag_name[1:]')} 7 - update-source-version jellyseerr $version 8 - 9 - nix_file=$(nix-instantiate --eval --strict -A "jellyseerr.meta.position" | sed -re 's/^"(.*):[0-9]+"$/\1/') 10 - nix_dir=$(dirname $nix_file) 11 - cp $(nix-instantiate --eval --expr 'with import ./default.nix { }; "${jellyseerr.src}/package.json"' | sed 's/"//g') $nix_dir 12 - 13 - old_yarn_hash=$(nix-instantiate --eval --strict -A "jellyseerr.offlineCache.outputHash" | tr -d '"' | sed -re 's|[+]|\\&|g') 14 - lock_file=$(nix-instantiate --eval --expr 'with import ./default.nix { }; "${jellyseerr.src}/yarn.lock"' | sed 's/"//g') 15 - new_yarn_hash=$(nix hash to-sri --type sha256 $(prefetch-yarn-deps $lock_file)) 16 - sed -i "$nix_file" -re "s|\"$old_yarn_hash\"|\"$new_yarn_hash\"|"
···
+14 -10
pkgs/servers/nextcloud/packages/apps/recognize.nix
··· 3 fetchurl, 4 lib, 5 nodejs, 6 python3, 7 util-linux, 8 ffmpeg, ··· 36 in 37 stdenv.mkDerivation rec { 38 39 - pname = "nextcloud-app-recognise"; 40 version = currentVersionInfo.version; 41 42 srcs = ··· 80 # Replace all occurences of node (and check that we actually remved them all) 81 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -gt 0 82 substituteInPlace recognize/lib/**/*.php \ 83 - --replace-quiet "\$this->settingsService->getSetting('node_binary')" "'${nodejs}/bin/node'" \ 84 - --replace-quiet "\$this->config->getAppValueString('node_binary', '""')" "'${nodejs}/bin/node'" \ 85 - --replace-quiet "\$this->config->getAppValueString('node_binary')" "'${nodejs}/bin/node'" \ 86 - --replace-quiet "\$this->config->getAppValue('node_binary', '""')" "'${nodejs}/bin/node'" \ 87 - --replace-quiet "\$this->config->getAppValue('node_binary')" "'${nodejs}/bin/node'" 88 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -eq 0 89 90 ··· 92 # Skip trying to install it... (less warnings in the log) 93 sed -i '/public function run/areturn ; //skip' recognize/lib/Migration/InstallDeps.php 94 95 - ln -s ${ffmpeg}/bin/ffmpeg recognize/node_modules/ffmpeg-static/ffmpeg 96 ''; 97 98 nativeBuildInputs = lib.optionals useLibTensorflow [ 99 nodejs 100 - nodejs.pkgs.node-pre-gyp 101 - nodejs.pkgs.node-gyp 102 python3 103 util-linux 104 ]; ··· 107 cd recognize 108 109 # Install tfjs dependency 110 - export CPPFLAGS="-I${nodejs}/include/node -Ideps/include" 111 cd node_modules/@tensorflow/tfjs-node 112 node-pre-gyp install --prefer-offline --build-from-source --nodedir=${nodejs}/include/node 113 cd - ··· 133 This app goes through your media collection and adds fitting tags, automatically categorizing your photos and music. 134 ''; 135 homepage = "https://apps.nextcloud.com/apps/recognize"; 136 }; 137 }
··· 3 fetchurl, 4 lib, 5 nodejs, 6 + node-pre-gyp, 7 + node-gyp, 8 python3, 9 util-linux, 10 ffmpeg, ··· 38 in 39 stdenv.mkDerivation rec { 40 41 + pname = "nextcloud-app-recognize"; 42 version = currentVersionInfo.version; 43 44 srcs = ··· 82 # Replace all occurences of node (and check that we actually remved them all) 83 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -gt 0 84 substituteInPlace recognize/lib/**/*.php \ 85 + --replace-quiet "\$this->settingsService->getSetting('node_binary')" "'${lib.getExe nodejs}'" \ 86 + --replace-quiet "\$this->config->getAppValueString('node_binary', '""')" "'${lib.getExe nodejs}'" \ 87 + --replace-quiet "\$this->config->getAppValueString('node_binary')" "'${lib.getExe nodejs}'" \ 88 + --replace-quiet "\$this->config->getAppValue('node_binary', '""')" "'${lib.getExe nodejs}'" \ 89 + --replace-quiet "\$this->config->getAppValue('node_binary')" "'${lib.getExe nodejs}'" 90 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -eq 0 91 92 ··· 94 # Skip trying to install it... (less warnings in the log) 95 sed -i '/public function run/areturn ; //skip' recognize/lib/Migration/InstallDeps.php 96 97 + ln -s ${lib.getExe ffmpeg} recognize/node_modules/ffmpeg-static/ffmpeg 98 ''; 99 100 nativeBuildInputs = lib.optionals useLibTensorflow [ 101 nodejs 102 + node-pre-gyp 103 + node-gyp 104 python3 105 util-linux 106 ]; ··· 109 cd recognize 110 111 # Install tfjs dependency 112 + export CPPFLAGS="-I${lib.getDev nodejs}/include/node -Ideps/include" 113 cd node_modules/@tensorflow/tfjs-node 114 node-pre-gyp install --prefer-offline --build-from-source --nodedir=${nodejs}/include/node 115 cd - ··· 135 This app goes through your media collection and adds fitting tags, automatically categorizing your photos and music. 136 ''; 137 homepage = "https://apps.nextcloud.com/apps/recognize"; 138 + description = "Smart media tagging for Nextcloud: recognizes faces, objects, landscapes, music genres"; 139 + changelog = "https://github.com/nextcloud/recognize/blob/v${version}/CHANGELOG.md"; 140 }; 141 }
+1 -1
pkgs/servers/pingvin-share/backend.nix
··· 31 prisma 32 ]; 33 34 - npmDepsHash = "sha256-BkwFQVHpg7PuMU5MaW73S6R+wbdGOJ62PR9EE2ghQFg="; 35 makeCacheWritable = true; 36 npmFlags = [ "--legacy-peer-deps" ]; 37
··· 31 prisma 32 ]; 33 34 + npmDepsHash = "sha256-zzN4r2hednmm5DFnK/RRTKPq0vWiGhG+WyNTPNNP1vc="; 35 makeCacheWritable = true; 36 npmFlags = [ "--legacy-peer-deps" ]; 37
+2 -2
pkgs/servers/pingvin-share/default.nix
··· 5 }: 6 7 let 8 - version = "1.7.0"; 9 src = fetchFromGitHub { 10 owner = "stonith404"; 11 repo = "pingvin-share"; 12 rev = "v${version}"; 13 - hash = "sha256-wZV3PKnGoD3g4PjSDPwMm4ftUTlEZykNkWlwLCDJfuM="; 14 }; 15 in 16
··· 5 }: 6 7 let 8 + version = "1.8.0"; 9 src = fetchFromGitHub { 10 owner = "stonith404"; 11 repo = "pingvin-share"; 12 rev = "v${version}"; 13 + hash = "sha256-cgB2cnpWdQFqdz9Lxyl87MOvhELge0YwwY0AoKqL8BU="; 14 }; 15 in 16
+1 -1
pkgs/servers/pingvin-share/frontend.nix
··· 23 buildInputs = [ vips ]; 24 nativeBuildInputs = [ pkg-config ]; 25 26 - npmDepsHash = "sha256-uu/JX039QjVwMtGI8lOjuzPC7kM1knhKycbJ/4cc1o4="; 27 makeCacheWritable = true; 28 npmFlags = [ "--legacy-peer-deps" ]; 29
··· 23 buildInputs = [ vips ]; 24 nativeBuildInputs = [ pkg-config ]; 25 26 + npmDepsHash = "sha256-wQIQHRVj8weUh/VOBdYVr8Q4ZE9u4rGJbQr0+NE6XG0="; 27 makeCacheWritable = true; 28 npmFlags = [ "--legacy-peer-deps" ]; 29
+2 -2
pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix
··· 5 fetchFromGitHub, 6 }: 7 let 8 - version = "0.5.0"; 9 self = ghidra.buildGhidraExtension { 10 pname = "ghidra-delinker-extension"; 11 inherit version; ··· 14 owner = "boricj"; 15 repo = "ghidra-delinker-extension"; 16 rev = "v${version}"; 17 - hash = "sha256-y0afqqIsWN33b/zGsxJYn8O+R5IP4eD300CgzMymEA0="; 18 }; 19 20 postPatch = ''
··· 5 fetchFromGitHub, 6 }: 7 let 8 + version = "0.5.1"; 9 self = ghidra.buildGhidraExtension { 10 pname = "ghidra-delinker-extension"; 11 inherit version; ··· 14 owner = "boricj"; 15 repo = "ghidra-delinker-extension"; 16 rev = "v${version}"; 17 + hash = "sha256-h6F50Z7S6tPOl9mIhChLKoFxHuAkq/n36ysUEFwWGxI="; 18 }; 19 20 postPatch = ''
+1 -34
pkgs/top-level/all-packages.nix
··· 1647 1648 arpack-mpi = arpack.override { useMpi = true; }; 1649 1650 - inherit (callPackages ../data/fonts/arphic {}) 1651 - arphic-ukai arphic-uming; 1652 - 1653 asymptote = libsForQt5.callPackage ../tools/graphics/asymptote { }; 1654 1655 atomicparsley = callPackage ../tools/video/atomicparsley { ··· 2405 }; 2406 2407 jellyfin-mpv-shim = python3Packages.callPackage ../applications/video/jellyfin-mpv-shim { }; 2408 - 2409 - jellyseerr = callPackage ../servers/jellyseerr { }; 2410 2411 juce = callPackage ../development/misc/juce { 2412 stdenv = if stdenv.hostPlatform.isDarwin then overrideSDK stdenv "11.0" else stdenv; ··· 4366 }); 4367 4368 mytetra = libsForQt5.callPackage ../applications/office/mytetra { }; 4369 - 4370 - navilu-font = callPackage ../data/fonts/navilu { stdenv = stdenvNoCC; }; 4371 4372 nerd-fonts = recurseIntoAttrs (callPackage ../data/fonts/nerd-fonts { }); 4373 ··· 10474 qt6 = recurseIntoAttrs (callPackage ../development/libraries/qt-6 { }); 10475 10476 qt6Packages = recurseIntoAttrs (import ./qt6-packages.nix { 10477 - inherit lib __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10478 inherit stdenv; 10479 }); 10480 ··· 12659 12660 andromeda-gtk-theme = libsForQt5.callPackage ../data/themes/andromeda-gtk-theme { }; 12661 12662 - ankacoder = callPackage ../data/fonts/ankacoder { }; 12663 - ankacoder-condensed = callPackage ../data/fonts/ankacoder/condensed.nix { }; 12664 - 12665 ant-theme = callPackage ../data/themes/ant-theme/ant.nix { }; 12666 12667 ant-bloody-theme = callPackage ../data/themes/ant-theme/ant-bloody.nix { }; ··· 12720 inherit (nodePackages) svgo; 12721 }; 12722 12723 - fira-code = callPackage ../data/fonts/fira-code { }; 12724 - fira-code-symbols = callPackage ../data/fonts/fira-code/symbols.nix { }; 12725 - 12726 flat-remix-icon-theme = callPackage ../data/icons/flat-remix-icon-theme { 12727 inherit (plasma5Packages) breeze-icons; 12728 }; ··· 12764 inherit (plasma5Packages) breeze-icons; 12765 }; 12766 12767 - hackgen-font = callPackage ../data/fonts/hackgen { }; 12768 - 12769 - hackgen-nf-font = callPackage ../data/fonts/hackgen/nerdfont.nix { }; 12770 - 12771 - inconsolata = callPackage ../data/fonts/inconsolata { }; 12772 - 12773 - inconsolata-lgc = callPackage ../data/fonts/inconsolata/lgc.nix { }; 12774 - 12775 - input-fonts = callPackage ../data/fonts/input-fonts { }; 12776 - 12777 iosevka = callPackage ../data/fonts/iosevka { }; 12778 iosevka-bin = callPackage ../data/fonts/iosevka/bin.nix { }; 12779 iosevka-comfy = recurseIntoAttrs (callPackages ../data/fonts/iosevka/comfy.nix {}); 12780 - 12781 - joypixels = callPackage ../data/fonts/joypixels { }; 12782 12783 kde-rounded-corners = kdePackages.callPackage ../data/themes/kwin-decorations/kde-rounded-corners { }; 12784 ··· 12865 12866 papis = with python3Packages; toPythonApplication papis; 12867 12868 - paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix { }; 12869 - paratype-pt-sans = callPackage ../data/fonts/paratype-pt/sans.nix { }; 12870 - paratype-pt-serif = callPackage ../data/fonts/paratype-pt/serif.nix { }; 12871 - 12872 plata-theme = callPackage ../data/themes/plata { 12873 inherit (mate) marco; 12874 }; ··· 12878 powerline-rs = callPackage ../tools/misc/powerline-rs { 12879 inherit (darwin.apple_sdk.frameworks) Security; 12880 }; 12881 - 12882 - profont = callPackage ../data/fonts/profont { }; 12883 12884 qogir-kde = libsForQt5.callPackage ../data/themes/qogir-kde { }; 12885 ··· 12920 source-han-sans-vf-ttf = sourceHanPackages.sans-vf-ttf; 12921 source-han-serif-vf-otf = sourceHanPackages.serif-vf-otf; 12922 source-han-serif-vf-ttf = sourceHanPackages.serif-vf-ttf; 12923 - 12924 - inherit (callPackages ../data/fonts/tai-languages { }) tai-ahom; 12925 12926 tango-icon-theme = callPackage ../data/icons/tango-icon-theme { 12927 gtk = res.gtk2;
··· 1647 1648 arpack-mpi = arpack.override { useMpi = true; }; 1649 1650 asymptote = libsForQt5.callPackage ../tools/graphics/asymptote { }; 1651 1652 atomicparsley = callPackage ../tools/video/atomicparsley { ··· 2402 }; 2403 2404 jellyfin-mpv-shim = python3Packages.callPackage ../applications/video/jellyfin-mpv-shim { }; 2405 2406 juce = callPackage ../development/misc/juce { 2407 stdenv = if stdenv.hostPlatform.isDarwin then overrideSDK stdenv "11.0" else stdenv; ··· 4361 }); 4362 4363 mytetra = libsForQt5.callPackage ../applications/office/mytetra { }; 4364 4365 nerd-fonts = recurseIntoAttrs (callPackage ../data/fonts/nerd-fonts { }); 4366 ··· 10467 qt6 = recurseIntoAttrs (callPackage ../development/libraries/qt-6 { }); 10468 10469 qt6Packages = recurseIntoAttrs (import ./qt6-packages.nix { 10470 + inherit lib config __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10471 inherit stdenv; 10472 }); 10473 ··· 12652 12653 andromeda-gtk-theme = libsForQt5.callPackage ../data/themes/andromeda-gtk-theme { }; 12654 12655 ant-theme = callPackage ../data/themes/ant-theme/ant.nix { }; 12656 12657 ant-bloody-theme = callPackage ../data/themes/ant-theme/ant-bloody.nix { }; ··· 12710 inherit (nodePackages) svgo; 12711 }; 12712 12713 flat-remix-icon-theme = callPackage ../data/icons/flat-remix-icon-theme { 12714 inherit (plasma5Packages) breeze-icons; 12715 }; ··· 12751 inherit (plasma5Packages) breeze-icons; 12752 }; 12753 12754 iosevka = callPackage ../data/fonts/iosevka { }; 12755 iosevka-bin = callPackage ../data/fonts/iosevka/bin.nix { }; 12756 iosevka-comfy = recurseIntoAttrs (callPackages ../data/fonts/iosevka/comfy.nix {}); 12757 12758 kde-rounded-corners = kdePackages.callPackage ../data/themes/kwin-decorations/kde-rounded-corners { }; 12759 ··· 12840 12841 papis = with python3Packages; toPythonApplication papis; 12842 12843 plata-theme = callPackage ../data/themes/plata { 12844 inherit (mate) marco; 12845 }; ··· 12849 powerline-rs = callPackage ../tools/misc/powerline-rs { 12850 inherit (darwin.apple_sdk.frameworks) Security; 12851 }; 12852 12853 qogir-kde = libsForQt5.callPackage ../data/themes/qogir-kde { }; 12854 ··· 12889 source-han-sans-vf-ttf = sourceHanPackages.sans-vf-ttf; 12890 source-han-serif-vf-otf = sourceHanPackages.serif-vf-otf; 12891 source-han-serif-vf-ttf = sourceHanPackages.serif-vf-ttf; 12892 12893 tango-icon-theme = callPackage ../data/icons/tango-icon-theme { 12894 gtk = res.gtk2;
+3 -1
pkgs/top-level/qt6-packages.nix
··· 5 # this file. 6 7 { lib 8 , __splicedPackages 9 , makeScopeWithSplicing' 10 , generateSplicesForMkScope ··· 27 inherit (self) callPackage; 28 noExtraAttrs = set: lib.attrsets.removeAttrs set [ "extend" "override" "overrideScope" "overrideDerivation" ]; 29 in (noExtraAttrs qt6) // { 30 - stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; 31 32 # LIBRARIES 33 accounts-qt = callPackage ../development/libraries/accounts-qt { }; ··· 125 126 xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { }; 127 }); 128 }
··· 5 # this file. 6 7 { lib 8 + , config 9 , __splicedPackages 10 , makeScopeWithSplicing' 11 , generateSplicesForMkScope ··· 28 inherit (self) callPackage; 29 noExtraAttrs = set: lib.attrsets.removeAttrs set [ "extend" "override" "overrideScope" "overrideDerivation" ]; 30 in (noExtraAttrs qt6) // { 31 32 # LIBRARIES 33 accounts-qt = callPackage ../development/libraries/accounts-qt { }; ··· 125 126 xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { }; 127 }); 128 + } // lib.optionalAttrs config.allowAliases { 129 + stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; # Added for 25.05 130 }