Merge staging-next into staging

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

+2426 -1953
+7
maintainers/maintainer-list.nix
··· 21737 21737 githubId = 22163194; 21738 21738 name = "Stel Abrego"; 21739 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 + }; 21740 21747 stepbrobd = { 21741 21748 name = "Yifei Sun"; 21742 21749 email = "ysun@hey.com";
+10 -3
nixos/modules/services/misc/jellyseerr.nix
··· 20 20 default = 5055; 21 21 description = ''The port which the Jellyseerr web UI should listen to.''; 22 22 }; 23 + 24 + configDir = lib.mkOption { 25 + type = lib.types.path; 26 + default = "/var/lib/jellyseerr/config"; 27 + description = "Config data directory"; 28 + }; 23 29 }; 24 30 25 31 config = lib.mkIf cfg.enable { ··· 27 33 description = "Jellyseerr, a requests manager for Jellyfin"; 28 34 after = [ "network.target" ]; 29 35 wantedBy = [ "multi-user.target" ]; 30 - environment.PORT = toString cfg.port; 36 + environment = { 37 + PORT = toString cfg.port; 38 + CONFIG_DIRECTORY = cfg.configDir; 39 + }; 31 40 serviceConfig = { 32 41 Type = "exec"; 33 42 StateDirectory = "jellyseerr"; 34 - WorkingDirectory = "${cfg.package}/libexec/jellyseerr/deps/jellyseerr"; 35 43 DynamicUser = true; 36 44 ExecStart = lib.getExe cfg.package; 37 - BindPaths = [ "/var/lib/jellyseerr/:${cfg.package}/libexec/jellyseerr/deps/jellyseerr/config/" ]; 38 45 Restart = "on-failure"; 39 46 ProtectHome = true; 40 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 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, 21 22 }: 22 23 23 24 buildDotnetModule rec { ··· 28 29 owner = "icsharpcode"; 29 30 repo = "AvaloniaILSpy"; 30 31 rev = "v${version}"; 31 - sha256 = "cCQy5cSpJNiVZqgphURcnraEM0ZyXGhzJLb5AThNfPQ="; 32 + hash = "sha256-cCQy5cSpJNiVZqgphURcnraEM0ZyXGhzJLb5AThNfPQ="; 32 33 }; 33 34 34 35 patches = [ 35 36 # Remove dead nuget package source 36 37 ./remove-broken-sources.patch 38 + # Upgrade project to .NET 8.0 39 + ./dotnet-8-upgrade.patch 37 40 ]; 38 41 39 - nativeBuildInputs = [ 40 - copyDesktopItems 41 - icoutils 42 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ bintools fixDarwinDylibNames ] 43 - ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ autoSignDarwinBinariesHook ]; 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 + ]; 44 54 45 55 buildInputs = [ 46 56 # Dependencies of nuget packages w/ native binaries ··· 61 71 glew 62 72 ]; 63 73 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 - ''; 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 + ''; 76 88 77 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 78 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 89 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 79 90 80 91 projectFile = "ILSpy/ILSpy.csproj"; 81 92 nugetDeps = ./deps.json; ··· 108 119 lgpl21Only 109 120 mspl 110 121 ]; 111 - sourceProvenance = with sourceTypes; [ fromSource binaryBytecode binaryNativeCode ]; 112 - maintainers = with maintainers; [ AngryAnt emilytrau ]; 122 + sourceProvenance = with sourceTypes; [ 123 + fromSource 124 + binaryBytecode 125 + binaryNativeCode 126 + ]; 127 + maintainers = with maintainers; [ 128 + AngryAnt 129 + emilytrau 130 + ]; 113 131 mainProgram = "ILSpy"; 114 132 }; 115 133 }
+469 -234
pkgs/applications/misc/avalonia-ilspy/deps.json
··· 2 2 { 3 3 "pname": "Avalonia", 4 4 "version": "0.10.13", 5 - "sha256": "1df46dvjyax8jjdcvdavpzq5bwxacrw71j557mcm1401vv3r1vn3" 5 + "hash": "sha256-w+6Qx94BkFBZPaXIcHhmqvNV8L9btc2alKgrL3czxLU=" 6 6 }, 7 7 { 8 8 "pname": "Avalonia.Angle.Windows.Natives", 9 9 "version": "2.1.0.2020091801", 10 - "sha256": "04jm83cz7vkhhr6n2c9hya2k8i2462xbf6np4bidk55as0jdq43a" 10 + "hash": "sha256-ahDcJNCqlNniItcat7owREQ0hfIwMWFNhnDu89lAVRI=" 11 11 }, 12 12 { 13 13 "pname": "Avalonia.AvaloniaEdit", 14 14 "version": "0.10.12.2", 15 - "sha256": "1sn8k71xcfnjxgxfqzdrv1hy7h7pvdk820nyzkmrf02gi77mx7nw" 15 + "hash": "sha256-3J5ez4lPAJfr/N4CgWbb98DjYdi5fez669I61sOZyOo=" 16 16 }, 17 17 { 18 18 "pname": "Avalonia.Controls.DataGrid", 19 19 "version": "0.10.13", 20 - "sha256": "1yl402l5cwbv6gwy3p8r702ypp3p8w5wi8im25c2bjnv31889l8r" 20 + "hash": "sha256-GdGEUBjbyiVYETWiyAtHd9zrBTgZ3eH5M3txVqgAhPo=" 21 21 }, 22 22 { 23 23 "pname": "Avalonia.Desktop", 24 24 "version": "0.10.13", 25 - "sha256": "1y206hrfwyg8023z0m7dik1hlir1r18h8q0f0zqz3sabyy5k276w" 25 + "hash": "sha256-3Bwxi/dL6fHxBw5gBFHIIUcKw4ztVPCHAOh57jI0QPg=" 26 26 }, 27 27 { 28 28 "pname": "Avalonia.Diagnostics", 29 29 "version": "0.10.13", 30 - "sha256": "11khr3w7gwlm1bajfh5zhrsfcfd9kbw5mbgwnbjq7i5lq9glriid" 30 + "hash": "sha256-LcZMX8K0xIPlsvytWviaqTnmdIa/QCfVCpXyd/jIcIY=" 31 31 }, 32 32 { 33 33 "pname": "Avalonia.FreeDesktop", 34 34 "version": "0.10.13", 35 - "sha256": "18gygzg12facawvzmfgpja4rsagy670dv1dcrx4shfl7w8l998jp" 35 + "hash": "sha256-V6KUKOKHOqhJz6yF3cAx/imdiZL3ufo3V0w5Ed5//qE=" 36 36 }, 37 37 { 38 38 "pname": "Avalonia.Markup.Xaml.Loader", 39 39 "version": "0.10.13", 40 - "sha256": "187r64xpidliqbp9c3qar0grhn97ffvc0mp0gyrxxszrff9vf69k" 40 + "hash": "sha256-Mxm3k3P5696zf+BWwLZzJ1mYH8gKD5buwpG2eDsx+aA=" 41 41 }, 42 42 { 43 43 "pname": "Avalonia.Native", 44 44 "version": "0.10.13", 45 - "sha256": "18b2pykfcgw9pyjmdqq7i1n8j330n7xrwyldl9bpkvahswinvhza" 45 + "hash": "sha256-6sNtI9dQ7XlXoo16nvuxYAyJbIgH41alv4k/5qa/YqE=" 46 46 }, 47 47 { 48 48 "pname": "Avalonia.Remote.Protocol", 49 49 "version": "0.10.13", 50 - "sha256": "0j0kdh6dbii59v972azhwq69rmak63lp5f5jqz3pi94mifx4bayy" 50 + "hash": "sha256-3qtFuouVpHjHx7K4cukwU9WcDObwK3HSTiXG1QxsE0g=" 51 51 }, 52 52 { 53 53 "pname": "Avalonia.Skia", 54 54 "version": "0.10.13", 55 - "sha256": "0k5y0w164m03q278m4wr7zzf3vfq9nb0am9vmmprivpn1xwwa7ml" 55 + "hash": "sha256-tB7FeQ/27phvrTtVBZZN2O3h/j+Zk4qOwANUYgIHvkw=" 56 56 }, 57 57 { 58 58 "pname": "Avalonia.Win32", 59 59 "version": "0.10.13", 60 - "sha256": "0jyl1rrn1n07dnqn76ijwhxgkc45dmsfh2d811n4695ndaz85nkl" 60 + "hash": "sha256-dNqCvmq2JENsCKgJ6HRthbD5OuQymmOxbQfYYHMO1Es=" 61 61 }, 62 62 { 63 63 "pname": "Avalonia.X11", 64 64 "version": "0.10.13", 65 - "sha256": "1y8x9hjdlxg4q8q958i364cbak8xjh4nldp38cnxwjir814p0xwh" 65 + "hash": "sha256-kHdwSUA5St4tQ+M2agmUHU21GDEjopIwwuR12iRMHfk=" 66 66 }, 67 67 { 68 68 "pname": "HarfBuzzSharp", 69 69 "version": "2.8.2-preview.178", 70 - "sha256": "1p5nwzl7jpypsd6df7hgcf47r977anjlyv21wacmalsj6lvdgnvn" 70 + "hash": "sha256-dtvXNjVSU1WZ4kFsT6VV56R8iGMPHtdM09dfeejnttw=" 71 71 }, 72 72 { 73 73 "pname": "HarfBuzzSharp.NativeAssets.Linux", 74 74 "version": "2.8.2-preview.178", 75 - "sha256": "1402ylkxbgcnagcarqlfvg4gppy2pqs3bmin4n5mphva1g7bqb2p" 75 + "hash": "sha256-Vyy8zgtqw1uLJTbWNTS+wt/7yNuO4qzYU5a91Sf1ApA=" 76 76 }, 77 77 { 78 78 "pname": "HarfBuzzSharp.NativeAssets.macOS", 79 79 "version": "2.8.2-preview.178", 80 - "sha256": "0p8miaclnbfpacc1jaqxwfg0yfx9byagi4j4k91d9621vd19i8b2" 80 + "hash": "sha256-YqGYQttBmNRCmkSS+JRfqTsPnuMdKxkYU9ctS5mKFV0=" 81 81 }, 82 82 { 83 83 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 84 84 "version": "2.8.2-preview.178", 85 - "sha256": "1n9jay9sji04xly6n8bzz4591fgy8i65p21a8mv5ip9lsyj1c320" 85 + "hash": "sha256-QAwWpNc03Vh2RSqIW0xE/rmQCvl/IWs87QREqZNXMtk=" 86 86 }, 87 87 { 88 88 "pname": "HarfBuzzSharp.NativeAssets.Win32", 89 89 "version": "2.8.2-preview.178", 90 - "sha256": "1r5syii96wv8q558cvsqw3lr10cdw6677lyiy82p6i3if51v3mr7" 90 + "hash": "sha256-J9exQ3FxRHMF8tHTc4zhjYGQ6eBYb4ZKwWhzk2L0uuQ=" 91 91 }, 92 92 { 93 93 "pname": "ICSharpCode.Decompiler", 94 94 "version": "7.1.0.6543", 95 - "sha256": "1xrajs5dcd7aqsg9ibhdcy39yrd8737kknkmqf907n7fqs2jxr46" 95 + "hash": "sha256-huQuhcbu2AOSw3XaOc84qGWfhmcNrpiexuo01oqWKvc=" 96 96 }, 97 97 { 98 98 "pname": "ICSharpCode.Decompiler", 99 99 "version": "7.2.1.6856", 100 - "sha256": "19z68rgzl93lh1h8anbgzw119mhvcgr9nh5q2nxk6qihl2mx97ba" 100 + "hash": "sha256-ap3Uq6AwYjO7FbhAm/JjG9YUAv9vWYVggHQk+l9G5qc=" 101 101 }, 102 102 { 103 103 "pname": "JetBrains.Annotations", 104 104 "version": "10.3.0", 105 - "sha256": "1grdx28ga9fp4hwwpwv354rizm8anfq4lp045q4ss41gvhggr3z8" 105 + "hash": "sha256-6I/8HtwvEK0JLgRcSrCzCtUfMylj88s5JNcl9ZDoLb8=" 106 106 }, 107 107 { 108 108 "pname": "Microsoft.CodeAnalysis.Analyzers", 109 109 "version": "2.9.6", 110 - "sha256": "18mr1f0wpq0fir8vjnq0a8pz50zpnblr7sabff0yqx37c975934a" 110 + "hash": "sha256-ioxUTmJndOyBc0vpk+my94PyL1IAW7lRjg7gy4ELuaI=" 111 111 }, 112 112 { 113 113 "pname": "Microsoft.CodeAnalysis.Common", 114 114 "version": "3.4.0", 115 - "sha256": "12rn6gl4viycwk3pz5hp5df63g66zvba4hnkwr3f0876jj5ivmsw" 115 + "hash": "sha256-XNcdi5TmIOBG5tNCotb+xrxhXCsXln/H5MzHTegzNos=" 116 116 }, 117 117 { 118 118 "pname": "Microsoft.CodeAnalysis.CSharp", 119 119 "version": "3.4.0", 120 - "sha256": "0rhylcwa95bxawcgixk64knv7p7xrykdjcabmx3gknk8hvj1ai9y" 120 + "hash": "sha256-PkUV5IZo2vlGr0sx2abP/dyz7SRm9vgYV32VpDijHmY=" 121 121 }, 122 122 { 123 123 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 124 124 "version": "3.4.0", 125 - "sha256": "1h2f0z9xnw987x8bydka1sd42ijqjx973md6v1gvpy1qc6ad244g" 125 + "hash": "sha256-jxDRlGE4+Ltf2KbVcVKXWEZBmg5qNr9QPyhx29MHTsA=" 126 126 }, 127 127 { 128 128 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 129 129 "version": "3.4.0", 130 - "sha256": "195gqnpwqkg2wlvk8x6yzm7byrxfq9bki20xmhf6lzfsdw3z4mf2" 130 + "hash": "sha256-wlXyB2/afWocrB2IOFfCrme/Tv3edDQ35eJNzK/Fr6Q=" 131 131 }, 132 132 { 133 133 "pname": "Microsoft.CSharp", 134 134 "version": "4.0.1", 135 - "sha256": "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj" 135 + "hash": "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8=" 136 136 }, 137 137 { 138 138 "pname": "Microsoft.CSharp", 139 139 "version": "4.3.0", 140 - "sha256": "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb" 140 + "hash": "sha256-a3dAiPaVuky0wpcHmpTVtAQJNGZ2v91/oArA+dpJgj8=" 141 141 }, 142 142 { 143 143 "pname": "Microsoft.DiaSymReader", 144 144 "version": "1.4.0", 145 - "sha256": "0li9shnm941jza40kqfkbbys77mrr55nvi9h3maq9fipq4qwx92d" 145 + "hash": "sha256-TaTOMcE3uoRVHTDFbUvJuZ6j/VrT4QmI+jKQVC3UKVI=" 146 146 }, 147 147 { 148 148 "pname": "Microsoft.DiaSymReader.Converter.Xml", 149 149 "version": "1.1.0-beta2-22164-02", 150 - "sha256": "1f8ha43xp0zy7kn1n98aaaapv6fdxl3a2qabg29fq74jzb16j9fp", 150 + "hash": "sha256-1yVpwvqSHOySeEthoQbtzZl9lVIKJRvsPP6D2wdRELk=", 151 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 152 }, 153 153 { 154 154 "pname": "Microsoft.DiaSymReader.Native", 155 155 "version": "17.0.0-beta1.21524.1", 156 - "sha256": "0gash3xgzvcb78w2xqv003l0cld199zpfilnjbagwbr5ikdh6f3s" 156 + "hash": "sha256-ejgD24wlL/7UkpZGd39KoVEG6ABg4y44Oovt//qAWj0=" 157 157 }, 158 158 { 159 159 "pname": "Microsoft.DiaSymReader.PortablePdb", 160 160 "version": "1.7.0-beta-21525-03", 161 - "sha256": "0jb70rjgdif61jjc93pysfrr52hi5jlfmjdaqic7s0a3rfg0ahyk", 161 + "hash": "sha256-00MFnstDAX1YxKrJ6qgsEYqSs9P+jsSkDMbF9mQGZ0k=", 162 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 163 }, 164 164 { 165 165 "pname": "Microsoft.NETCore.Platforms", 166 166 "version": "1.0.1", 167 - "sha256": "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr" 167 + "hash": "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=" 168 168 }, 169 169 { 170 170 "pname": "Microsoft.NETCore.Platforms", 171 171 "version": "1.1.0", 172 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 172 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 173 173 }, 174 174 { 175 175 "pname": "Microsoft.NETCore.Platforms", 176 176 "version": "1.1.1", 177 - "sha256": "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj" 177 + "hash": "sha256-8hLiUKvy/YirCWlFwzdejD2Db3DaXhHxT7GSZx/znJg=" 178 178 }, 179 179 { 180 180 "pname": "Microsoft.NETCore.Platforms", 181 181 "version": "2.0.0", 182 - "sha256": "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0" 182 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 183 183 }, 184 184 { 185 185 "pname": "Microsoft.NETCore.Platforms", 186 186 "version": "2.1.2", 187 - "sha256": "1507hnpr9my3z4w1r6xk5n0s1j3y6a2c2cnynj76za7cphxi1141" 187 + "hash": "sha256-gYQQO7zsqG+OtN4ywYQyfsiggS2zmxw4+cPXlK+FB5Q=" 188 188 }, 189 189 { 190 190 "pname": "Microsoft.NETCore.Platforms", 191 191 "version": "5.0.0", 192 - "sha256": "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc" 192 + "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 193 193 }, 194 194 { 195 195 "pname": "Microsoft.NETCore.Targets", 196 196 "version": "1.0.1", 197 - "sha256": "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p" 197 + "hash": "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=" 198 198 }, 199 199 { 200 200 "pname": "Microsoft.NETCore.Targets", 201 201 "version": "1.1.0", 202 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 202 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 203 203 }, 204 204 { 205 205 "pname": "Microsoft.NETCore.Targets", 206 206 "version": "1.1.3", 207 - "sha256": "05smkcyxir59rgrmp7d6327vvrlacdgldfxhmyr1azclvga1zfsq" 207 + "hash": "sha256-WLsf1NuUfRWyr7C7Rl9jiua9jximnVvzy6nk2D2bVRc=" 208 208 }, 209 209 { 210 210 "pname": "Microsoft.VisualStudio.Composition", 211 211 "version": "17.1.20", 212 - "sha256": "028bcxrzqc0nng2l7fqqaa0z1k4wc541jfhcdwjvw9f45q6nf3fs" 212 + "hash": "sha256-2g1nDS7EJb4lbww6GUhhnMzwgVIYu0PFsxYw/HNnCwk=" 213 213 }, 214 214 { 215 215 "pname": "Microsoft.VisualStudio.Composition.Analyzers", 216 216 "version": "17.1.20", 217 - "sha256": "14fm8j1bvqh0bpfg3x814c1m747q99i4q3xplqb8db7l2xkn3v7a" 217 + "hash": "sha256-6uxhZxf0rIYWprcPTGJK+JBTAyMB9fHcXQDivYJE1ZE=" 218 218 }, 219 219 { 220 220 "pname": "Microsoft.VisualStudio.Validation", 221 221 "version": "17.0.34", 222 - "sha256": "09la67gw6xdss3as3ph0ql3b3zhblni2qmkma9gz53kx1hav9ygp" 222 + "hash": "sha256-9/m0FQx9jvJfUnVWLKKlC/6xBsUA3qHV0Lp1w98xiiY=" 223 223 }, 224 224 { 225 225 "pname": "Microsoft.Win32.Primitives", 226 226 "version": "4.0.1", 227 - "sha256": "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7" 227 + "hash": "sha256-B4t5El/ViBdxALMcpZulewc4j/3SIXf71HhJWhm4Ctk=" 228 + }, 229 + { 230 + "pname": "Microsoft.Win32.Primitives", 231 + "version": "4.3.0", 232 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 228 233 }, 229 234 { 230 235 "pname": "Microsoft.Win32.Registry", 231 236 "version": "4.0.0", 232 - "sha256": "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k" 237 + "hash": "sha256-M/06F/Z2wTHCh4pZOgtCjUGLD1FJXEJKCmzOeFMl7uo=" 233 238 }, 234 239 { 235 240 "pname": "Microsoft.Win32.Registry", 236 241 "version": "5.0.0", 237 - "sha256": "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n" 242 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 238 243 }, 239 244 { 240 245 "pname": "Microsoft.Win32.SystemEvents", 241 246 "version": "4.5.0", 242 - "sha256": "0fnkv3ky12227zqg4zshx4kw2mvysq2ppxjibfw02cc3iprv4njq" 247 + "hash": "sha256-WFqy842DMQG4W1H2ewXWflfBJ+lQf/LwP0KI4OfY0zo=" 243 248 }, 244 249 { 245 250 "pname": "Mono.Cecil", 246 251 "version": "0.11.3", 247 - "sha256": "0xcx7pk9y2n1hr15c0l1balzi69kw5gy8dk7sb8jwqyyvm35q4j3" 252 + "hash": "sha256-QxJcRt3eYy7R0mc25F/hM5n4qVqBAlZChsEKn+Y9nXU=" 248 253 }, 249 254 { 250 255 "pname": "NETStandard.Library", 251 - "version": "2.0.3", 252 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 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=" 253 263 }, 254 264 { 255 265 "pname": "Newtonsoft.Json", 256 266 "version": "9.0.1", 257 - "sha256": "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r" 267 + "hash": "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU=" 258 268 }, 259 269 { 260 270 "pname": "NuGet.Client", 261 271 "version": "4.2.0", 262 - "sha256": "1s34w7yi0xcm0hi9g32xx9njy52hjkh4gbizldvpp48mkki6bfrl" 272 + "hash": "sha256-NLtl4pwVkXt3oz+uR+CUUBQvbepdjJciBJV1EP3hZOg=" 263 273 }, 264 274 { 265 275 "pname": "NuGet.Common", 266 276 "version": "4.2.0", 267 - "sha256": "0j8bk9nkaxcf52az2rxhx27rqn7hs9mmw0p48i0x7g8i9b40wvwc" 277 + "hash": "sha256-jG8OyEoRvdNBROQCXmvS8Ficj+iwZ/GVKI51NW2aC0k=" 268 278 }, 269 279 { 270 280 "pname": "NuGet.ContentModel", 271 281 "version": "4.2.0", 272 - "sha256": "1989zmdgwh13zwg9kafapdka6p46i50iw434fb8k22jp6amnwnvm" 282 + "hash": "sha256-dVtuqzJXCjHRcmQQHkGJhlyjZrvKqZke/yNA/lr9CaU=" 273 283 }, 274 284 { 275 285 "pname": "NuGet.Frameworks", 276 286 "version": "4.2.0", 277 - "sha256": "0dwzg8kq0fwdjzl00ag969sxakj3brppr4y7k37yx5w1slj7wsb3" 287 + "hash": "sha256-Y2l+JNWBl+7PmMeTfG9eQ07VdTLpKQDol407gCd6nzc=" 278 288 }, 279 289 { 280 290 "pname": "NuGet.Packaging", 281 291 "version": "4.2.0", 282 - "sha256": "1g83ry4x0zlcdcgwd7c8daxig4cx77jics6rlfasy223hyvss8p3" 292 + "hash": "sha256-4yKtt4dDCK+Vo9loFuU5nZEXu2qIncYfa4x+0InPA70=" 283 293 }, 284 294 { 285 295 "pname": "NuGet.Packaging.Core", 286 296 "version": "4.2.0", 287 - "sha256": "11dpszywsxb12ybx176z2703181xixzhxg3w3rc8ivw699ivsdfk" 297 + "hash": "sha256-0zW9Y0qG74hYHny8Dn+PPaAwwBHfnNCXF2F1zf3Xt4U=" 288 298 }, 289 299 { 290 300 "pname": "NuGet.Packaging.Core.Types", 291 301 "version": "4.2.0", 292 - "sha256": "031gzbs5sqb46c2rbqpybc9bw0i7ilidbbv2k7rdas3300cjp5kj" 302 + "hash": "sha256-cpYrGQBjaNXymWKv1SKNJwK+Elv+4pUFM2RhXfT6Lww=" 293 303 }, 294 304 { 295 305 "pname": "NuGet.Repositories", 296 306 "version": "4.2.0", 297 - "sha256": "0w18lj7q85grdd563p429cg0pg8hi9xmsrr4pzskha139vhfq0lp" 307 + "hash": "sha256-lwLs4E4jKDj1vyRnXXuKEL0LHkuC3GFKa/kVhI+kKHA=" 298 308 }, 299 309 { 300 310 "pname": "NuGet.RuntimeModel", 301 311 "version": "4.2.0", 302 - "sha256": "0k59ww2zk56bsqici62zn59h19wp4ai9v395hy5mq6wl6mz6qaax" 312 + "hash": "sha256-XSlsfjWUG1yLhyWNnaIil6cAU7FfmMgi1suU+QXnqUw=" 303 313 }, 304 314 { 305 315 "pname": "NuGet.Versioning", 306 316 "version": "4.2.0", 307 - "sha256": "1mx7b4hgdhl6g7yzp3lknmkxkyfjw372nxpsmvdznwhg214iz2d3" 317 + "hash": "sha256-o4kfSRAPcvvbrvp2K87g0vnZZ7WTjvv9eYbC9iBZp9c=" 308 318 }, 309 319 { 310 320 "pname": "runtime.any.System.Collections", 311 321 "version": "4.3.0", 312 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 322 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 313 323 }, 314 324 { 315 325 "pname": "runtime.any.System.Diagnostics.Tools", 316 326 "version": "4.3.0", 317 - "sha256": "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk" 327 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 318 328 }, 319 329 { 320 330 "pname": "runtime.any.System.Diagnostics.Tracing", 321 331 "version": "4.3.0", 322 - "sha256": "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn" 332 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 323 333 }, 324 334 { 325 335 "pname": "runtime.any.System.Globalization", 326 336 "version": "4.3.0", 327 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 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=" 328 343 }, 329 344 { 330 345 "pname": "runtime.any.System.IO", 331 346 "version": "4.3.0", 332 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 347 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 333 348 }, 334 349 { 335 350 "pname": "runtime.any.System.Reflection", 336 351 "version": "4.3.0", 337 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 352 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 338 353 }, 339 354 { 340 355 "pname": "runtime.any.System.Reflection.Extensions", 341 356 "version": "4.3.0", 342 - "sha256": "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33" 357 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 343 358 }, 344 359 { 345 360 "pname": "runtime.any.System.Reflection.Primitives", 346 361 "version": "4.3.0", 347 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 362 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 348 363 }, 349 364 { 350 365 "pname": "runtime.any.System.Resources.ResourceManager", 351 366 "version": "4.3.0", 352 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 367 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 353 368 }, 354 369 { 355 370 "pname": "runtime.any.System.Runtime", 356 371 "version": "4.3.0", 357 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 372 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 358 373 }, 359 374 { 360 375 "pname": "runtime.any.System.Runtime.Handles", 361 376 "version": "4.3.0", 362 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 377 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 363 378 }, 364 379 { 365 380 "pname": "runtime.any.System.Runtime.InteropServices", 366 381 "version": "4.3.0", 367 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 382 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 368 383 }, 369 384 { 370 385 "pname": "runtime.any.System.Text.Encoding", 371 386 "version": "4.3.0", 372 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 387 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 373 388 }, 374 389 { 375 390 "pname": "runtime.any.System.Text.Encoding.Extensions", 376 391 "version": "4.3.0", 377 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 392 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 378 393 }, 379 394 { 380 395 "pname": "runtime.any.System.Threading.Tasks", 381 396 "version": "4.3.0", 382 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 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=" 383 403 }, 384 404 { 385 405 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 386 406 "version": "4.3.0", 387 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 407 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 388 408 }, 389 409 { 390 410 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 391 411 "version": "4.3.0", 392 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 412 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 393 413 }, 394 414 { 395 415 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 396 416 "version": "4.3.0", 397 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 417 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 398 418 }, 399 419 { 400 420 "pname": "runtime.native.System", 401 421 "version": "4.0.0", 402 - "sha256": "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf" 422 + "hash": "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894=" 403 423 }, 404 424 { 405 425 "pname": "runtime.native.System", 406 426 "version": "4.3.0", 407 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 427 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 408 428 }, 409 429 { 410 430 "pname": "runtime.native.System.IO.Compression", 411 431 "version": "4.3.0", 412 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 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=" 413 443 }, 414 444 { 415 445 "pname": "runtime.native.System.Security.Cryptography", 416 446 "version": "4.0.0", 417 - "sha256": "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9" 447 + "hash": "sha256-6Q8eYzC32BbGIiTHoQaE6B3cD81vYQcH5SCswYRSp0w=" 448 + }, 449 + { 450 + "pname": "runtime.native.System.Security.Cryptography.Apple", 451 + "version": "4.3.0", 452 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 418 453 }, 419 454 { 420 455 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 421 456 "version": "4.3.0", 422 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 457 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 423 458 }, 424 459 { 425 460 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 426 461 "version": "4.3.0", 427 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 462 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 428 463 }, 429 464 { 430 465 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 431 466 "version": "4.3.0", 432 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 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=" 433 473 }, 434 474 { 435 475 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 436 476 "version": "4.3.0", 437 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 477 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 438 478 }, 439 479 { 440 480 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 441 481 "version": "4.3.0", 442 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 482 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 443 483 }, 444 484 { 445 485 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 446 486 "version": "4.3.0", 447 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 487 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 448 488 }, 449 489 { 450 490 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 451 491 "version": "4.3.0", 452 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 492 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 453 493 }, 454 494 { 455 495 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 456 496 "version": "4.3.0", 457 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 497 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 458 498 }, 459 499 { 460 500 "pname": "runtime.unix.Microsoft.Win32.Primitives", 461 501 "version": "4.3.0", 462 - "sha256": "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id" 502 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 503 + }, 504 + { 505 + "pname": "runtime.unix.System.Console", 506 + "version": "4.3.1", 507 + "hash": "sha256-dxyn/1Px4FKLZ2QMUrkFpW619Y1lhPeTiGLWYM6IbpY=" 463 508 }, 464 509 { 465 510 "pname": "runtime.unix.System.Diagnostics.Debug", 466 511 "version": "4.3.0", 467 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 512 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 468 513 }, 469 514 { 470 515 "pname": "runtime.unix.System.IO.FileSystem", 471 516 "version": "4.3.0", 472 - "sha256": "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix" 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=" 473 528 }, 474 529 { 475 530 "pname": "runtime.unix.System.Private.Uri", 476 531 "version": "4.3.0", 477 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 532 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 478 533 }, 479 534 { 480 535 "pname": "runtime.unix.System.Runtime.Extensions", 481 536 "version": "4.3.0", 482 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 537 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 483 538 }, 484 539 { 485 540 "pname": "SkiaSharp", 486 541 "version": "2.88.0-preview.178", 487 - "sha256": "062g14s6b2bixanpwihj3asm3jwvfw15mhvzqv6901afrlgzx4nk" 542 + "hash": "sha256-05L+H81OBZDMxn/DWgJ3m8tRtRoSRn6t6nGJZTQJTxg=" 488 543 }, 489 544 { 490 545 "pname": "SkiaSharp.NativeAssets.Linux", 491 546 "version": "2.88.0-preview.178", 492 - "sha256": "07kga1j51l3l302nvf537zg5clf6rflinjy0xd6i06cmhpkf3ksw" 547 + "hash": "sha256-XM/h5oWVGRBN68BLG6nLxlFW3j+juG0FGHTQUGRQbx4=" 493 548 }, 494 549 { 495 550 "pname": "SkiaSharp.NativeAssets.macOS", 496 551 "version": "2.88.0-preview.178", 497 - "sha256": "14p95nxccs6yq4rn2h9zbb60k0232k6349zdpy31jcfr6gc99cgi" 552 + "hash": "sha256-8bGU2DPZMRmGv+0nMswUQ4AJzFo/QWEzwd5oxrot6ZI=" 498 553 }, 499 554 { 500 555 "pname": "SkiaSharp.NativeAssets.WebAssembly", 501 556 "version": "2.88.0-preview.178", 502 - "sha256": "09jmcg5k1vpsal8jfs90mwv0isf2y5wq3h4hd77rv6vffn5ic4sm" 557 + "hash": "sha256-VRMWi3Vum53PaZDAgXnxwukINq8gaScRVfruMMtjVSY=" 503 558 }, 504 559 { 505 560 "pname": "SkiaSharp.NativeAssets.Win32", 506 561 "version": "2.88.0-preview.178", 507 - "sha256": "0ficil702lv3fvwpngbqh5l85i05l5jafzyh4jprzshr2qbnd8nl" 562 + "hash": "sha256-1KJmFxYZ6p+vJNB/p2ShBcSCaIF4PXv5dmNTAQ6NLDo=" 508 563 }, 509 564 { 510 - "pname": "System.Buffers", 565 + "pname": "System.AppContext", 566 + "version": "4.1.0", 567 + "hash": "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs=" 568 + }, 569 + { 570 + "pname": "System.AppContext", 511 571 "version": "4.3.0", 512 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 572 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 513 573 }, 514 574 { 515 575 "pname": "System.Buffers", 516 - "version": "4.4.0", 517 - "sha256": "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19" 576 + "version": "4.0.0", 577 + "hash": "sha256-+YUymoyS0O+xVyF2+LiAdZlMww8nofPN4ja9ylYqRo8=" 518 578 }, 519 579 { 520 580 "pname": "System.Buffers", 521 - "version": "4.5.1", 522 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 581 + "version": "4.3.0", 582 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 523 583 }, 524 584 { 525 585 "pname": "System.Collections", 526 586 "version": "4.0.11", 527 - "sha256": "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6" 587 + "hash": "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=" 528 588 }, 529 589 { 530 590 "pname": "System.Collections", 531 591 "version": "4.3.0", 532 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 592 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 533 593 }, 534 594 { 535 595 "pname": "System.Collections.Concurrent", 536 596 "version": "4.0.12", 537 - "sha256": "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc" 597 + "hash": "sha256-zIEM7AB4SyE9u6G8+o+gCLLwkgi6+3rHQVPdn/dEwB8=" 598 + }, 599 + { 600 + "pname": "System.Collections.Concurrent", 601 + "version": "4.3.0", 602 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 538 603 }, 539 604 { 540 605 "pname": "System.Collections.Immutable", 541 606 "version": "1.5.0", 542 - "sha256": "1d5gjn5afnrf461jlxzawcvihz195gayqpcfbv6dd7pxa9ialn06" 607 + "hash": "sha256-BliqYlL9ntbMXo5d7NUrKXwYN+PqdyqDIS5bp4qVr7Q=" 543 608 }, 544 609 { 545 610 "pname": "System.Collections.Immutable", 546 611 "version": "1.6.0", 547 - "sha256": "1pbxzdz3pwqyybzv5ff2b7nrc281bhg7hq34w0fn1w3qfgrbwyw2" 612 + "hash": "sha256-gnu+8nN48GAd4GRgeB5cAQmW7VnCubL/8h7zO377fd0=" 548 613 }, 549 614 { 550 615 "pname": "System.Collections.Immutable", 551 616 "version": "5.0.0", 552 - "sha256": "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r" 617 + "hash": "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8=" 553 618 }, 554 619 { 555 620 "pname": "System.ComponentModel.Annotations", 556 621 "version": "4.5.0", 557 - "sha256": "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p" 622 + "hash": "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso=" 558 623 }, 559 624 { 560 625 "pname": "System.ComponentModel.Composition", 561 626 "version": "6.0.0", 562 - "sha256": "16zfx5mivkkykp76krw8x68izmjf79ldfmn26k9x3m55lmp9i77c" 627 + "hash": "sha256-7JyYbqWl1NHTNMJW12g6TtYfkemI52nOnX7OHWvp7ps=" 563 628 }, 564 629 { 565 630 "pname": "System.Composition", 566 631 "version": "6.0.0", 567 - "sha256": "1p7hysns39cc24af6dwd4m48bqjsrr3clvi4aws152mh2fgyg50z" 632 + "hash": "sha256-H5TnnxOwihI0VyRuykbOWuKFSCWNN+MUEYyloa328Nw=" 568 633 }, 569 634 { 570 635 "pname": "System.Composition.AttributedModel", 571 636 "version": "6.0.0", 572 - "sha256": "1mqrblb0l65hw39d0hnspqcv85didpn4wbiwhfgj4784wzqx2w6k" 637 + "hash": "sha256-03DR8ecEHSKfgzwuTuxtsRW0Gb7aQtDS4LAYChZdGdc=" 573 638 }, 574 639 { 575 640 "pname": "System.Composition.Convention", 576 641 "version": "6.0.0", 577 - "sha256": "02km3yb94p1c4s7liyhkmda0g71zm1rc8ijsfmy4bnlkq15xjw3b" 642 + "hash": "sha256-a3DZS8CT2kV8dVpGxHKoP5wHVKsT+kiPJixckpYfdQo=" 578 643 }, 579 644 { 580 645 "pname": "System.Composition.Hosting", 581 646 "version": "6.0.0", 582 - "sha256": "0big5nk8c44rxp6cfykhk7rxvn2cgwa99w6c3v2a36adc3lj36ky" 647 + "hash": "sha256-fpoh6WBNmaHEHszwlBR/TNjd85lwesfM7ZkQhqYtLy4=" 583 648 }, 584 649 { 585 650 "pname": "System.Composition.Runtime", 586 651 "version": "6.0.0", 587 - "sha256": "0vq5ik63yii1784gsa2f2kx9w6xllmm8b8rk0arid1jqdj1nyrlw" 652 + "hash": "sha256-nGZvg2xYhhazAjOjhWqltBue+hROKP0IOiFGP8yMBW8=" 588 653 }, 589 654 { 590 655 "pname": "System.Composition.TypedParts", 591 656 "version": "6.0.0", 592 - "sha256": "0y9pq3y60nyrpfy51f576a0qjjdh61mcv8vnik32pm4bz56h9q72" 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=" 593 668 }, 594 669 { 595 670 "pname": "System.Diagnostics.Debug", 596 671 "version": "4.0.11", 597 - "sha256": "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz" 672 + "hash": "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=" 598 673 }, 599 674 { 600 675 "pname": "System.Diagnostics.Debug", 601 676 "version": "4.3.0", 602 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 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=" 603 688 }, 604 689 { 605 690 "pname": "System.Diagnostics.Process", 606 691 "version": "4.1.0", 607 - "sha256": "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s" 692 + "hash": "sha256-OgW6ogQ+oYADYS0PHmwXdhrOKQJpqXlwzSvmfjTLNBg=" 608 693 }, 609 694 { 610 695 "pname": "System.Diagnostics.Tools", 611 696 "version": "4.0.1", 612 - "sha256": "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x" 697 + "hash": "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U=" 698 + }, 699 + { 700 + "pname": "System.Diagnostics.Tools", 701 + "version": "4.3.0", 702 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 613 703 }, 614 704 { 615 705 "pname": "System.Diagnostics.Tracing", 616 706 "version": "4.1.0", 617 - "sha256": "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394" 707 + "hash": "sha256-JA0jJcLbU3zh52ub3zweob2EVHvxOqiC6SCYHrY5WbQ=" 618 708 }, 619 709 { 620 710 "pname": "System.Diagnostics.Tracing", 621 711 "version": "4.3.0", 622 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 712 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 623 713 }, 624 714 { 625 715 "pname": "System.Drawing.Common", 626 716 "version": "4.5.0", 627 - "sha256": "0knqa0zsm91nfr34br8gx5kjqq4v81zdhqkacvs2hzc8nqk0ddhc" 717 + "hash": "sha256-DLYGJraIfSj0Zmpi2H5Am2AsZ+kP5UVGdjakqj9Q2E4=" 628 718 }, 629 719 { 630 720 "pname": "System.Dynamic.Runtime", 631 721 "version": "4.0.11", 632 - "sha256": "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9" 722 + "hash": "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=" 633 723 }, 634 724 { 635 725 "pname": "System.Dynamic.Runtime", 636 726 "version": "4.3.0", 637 - "sha256": "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk" 727 + "hash": "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=" 638 728 }, 639 729 { 640 730 "pname": "System.Globalization", 641 731 "version": "4.0.11", 642 - "sha256": "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d" 732 + "hash": "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=" 643 733 }, 644 734 { 645 735 "pname": "System.Globalization", 646 736 "version": "4.3.0", 647 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 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=" 648 758 }, 649 759 { 650 760 "pname": "System.IO", 651 761 "version": "4.1.0", 652 - "sha256": "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp" 762 + "hash": "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=" 653 763 }, 654 764 { 655 765 "pname": "System.IO", 656 766 "version": "4.3.0", 657 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 767 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 658 768 }, 659 769 { 660 770 "pname": "System.IO.Compression", 661 771 "version": "4.3.0", 662 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 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=" 663 783 }, 664 784 { 665 785 "pname": "System.IO.FileSystem", 666 786 "version": "4.0.1", 667 - "sha256": "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1" 787 + "hash": "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=" 668 788 }, 669 789 { 670 790 "pname": "System.IO.FileSystem", 671 791 "version": "4.3.0", 672 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 792 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 673 793 }, 674 794 { 675 795 "pname": "System.IO.FileSystem.Primitives", 676 796 "version": "4.0.1", 677 - "sha256": "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612" 797 + "hash": "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg=" 678 798 }, 679 799 { 680 800 "pname": "System.IO.FileSystem.Primitives", 681 801 "version": "4.3.0", 682 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 802 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 683 803 }, 684 804 { 685 805 "pname": "System.Linq", 686 806 "version": "4.1.0", 687 - "sha256": "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5" 807 + "hash": "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=" 688 808 }, 689 809 { 690 810 "pname": "System.Linq", 691 811 "version": "4.3.0", 692 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 812 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 693 813 }, 694 814 { 695 815 "pname": "System.Linq.Expressions", 696 816 "version": "4.1.0", 697 - "sha256": "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg" 817 + "hash": "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=" 698 818 }, 699 819 { 700 820 "pname": "System.Linq.Expressions", 701 821 "version": "4.3.0", 702 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 822 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 703 823 }, 704 824 { 705 825 "pname": "System.Memory", 706 826 "version": "4.5.3", 707 - "sha256": "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a" 827 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 708 828 }, 709 829 { 710 - "pname": "System.Memory", 711 - "version": "4.5.4", 712 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 830 + "pname": "System.Net.Http", 831 + "version": "4.1.0", 832 + "hash": "sha256-y6PnGuObJvOkhl9CXNFJQcV3SXuEz5yRLOCxGGTEucQ=" 713 833 }, 714 834 { 715 - "pname": "System.Numerics.Vectors", 716 - "version": "4.4.0", 717 - "sha256": "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba" 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=" 718 863 }, 719 864 { 720 865 "pname": "System.Numerics.Vectors", 721 866 "version": "4.5.0", 722 - "sha256": "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59" 867 + "hash": "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8=" 723 868 }, 724 869 { 725 870 "pname": "System.ObjectModel", 726 871 "version": "4.0.12", 727 - "sha256": "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj" 872 + "hash": "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=" 728 873 }, 729 874 { 730 875 "pname": "System.ObjectModel", 731 876 "version": "4.3.0", 732 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 877 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 733 878 }, 734 879 { 735 880 "pname": "System.Private.Uri", 736 881 "version": "4.3.0", 737 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 882 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 738 883 }, 739 884 { 740 885 "pname": "System.Reactive", 741 886 "version": "5.0.0", 742 - "sha256": "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik" 887 + "hash": "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE=" 743 888 }, 744 889 { 745 890 "pname": "System.Reflection", 746 891 "version": "4.1.0", 747 - "sha256": "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9" 892 + "hash": "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=" 748 893 }, 749 894 { 750 895 "pname": "System.Reflection", 751 896 "version": "4.3.0", 752 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 897 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 753 898 }, 754 899 { 755 900 "pname": "System.Reflection.Emit", 756 901 "version": "4.0.1", 757 - "sha256": "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp" 902 + "hash": "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=" 758 903 }, 759 904 { 760 905 "pname": "System.Reflection.Emit", 761 906 "version": "4.3.0", 762 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 907 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 763 908 }, 764 909 { 765 910 "pname": "System.Reflection.Emit", 766 911 "version": "4.7.0", 767 - "sha256": "121l1z2ypwg02yz84dy6gr82phpys0njk7yask3sihgy214w43qp" 912 + "hash": "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg=" 768 913 }, 769 914 { 770 915 "pname": "System.Reflection.Emit.ILGeneration", 771 916 "version": "4.0.1", 772 - "sha256": "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0" 917 + "hash": "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=" 773 918 }, 774 919 { 775 920 "pname": "System.Reflection.Emit.ILGeneration", 776 921 "version": "4.3.0", 777 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 778 - }, 779 - { 780 - "pname": "System.Reflection.Emit.ILGeneration", 781 - "version": "4.7.0", 782 - "sha256": "0l8jpxhpgjlf1nkz5lvp61r4kfdbhr29qi8aapcxn3izd9wd0j8r" 922 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 783 923 }, 784 924 { 785 925 "pname": "System.Reflection.Emit.Lightweight", 786 926 "version": "4.0.1", 787 - "sha256": "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr" 927 + "hash": "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=" 788 928 }, 789 929 { 790 930 "pname": "System.Reflection.Emit.Lightweight", 791 931 "version": "4.3.0", 792 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 932 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 793 933 }, 794 934 { 795 935 "pname": "System.Reflection.Extensions", 796 936 "version": "4.0.1", 797 - "sha256": "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn" 937 + "hash": "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=" 798 938 }, 799 939 { 800 940 "pname": "System.Reflection.Extensions", 801 941 "version": "4.3.0", 802 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 942 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 803 943 }, 804 944 { 805 945 "pname": "System.Reflection.Metadata", 806 946 "version": "1.6.0", 807 - "sha256": "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4" 947 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 808 948 }, 809 949 { 810 950 "pname": "System.Reflection.Metadata", 811 951 "version": "5.0.0", 812 - "sha256": "17qsl5nanlqk9iz0l5wijdn6ka632fs1m1fvx18dfgswm258r3ss" 952 + "hash": "sha256-Wo+MiqhcP9dQ6NuFGrQTw6hpbJORFwp+TBNTq2yhGp8=" 813 953 }, 814 954 { 815 955 "pname": "System.Reflection.Primitives", 816 956 "version": "4.0.1", 817 - "sha256": "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28" 957 + "hash": "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=" 818 958 }, 819 959 { 820 960 "pname": "System.Reflection.Primitives", 821 961 "version": "4.3.0", 822 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 962 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 823 963 }, 824 964 { 825 965 "pname": "System.Reflection.TypeExtensions", 826 966 "version": "4.1.0", 827 - "sha256": "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7" 967 + "hash": "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=" 828 968 }, 829 969 { 830 970 "pname": "System.Reflection.TypeExtensions", 831 971 "version": "4.3.0", 832 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 972 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 833 973 }, 834 974 { 835 975 "pname": "System.Reflection.TypeExtensions", 836 976 "version": "4.7.0", 837 - "sha256": "04qw9km34pmzr2alckb3mqdb4fpqwlvzk59lg8c7jfidghcl4jqq" 977 + "hash": "sha256-GEtCGXwtOnkYejSV+Tfl+DqyGq5jTUaVyL9eMupMHBM=" 838 978 }, 839 979 { 840 980 "pname": "System.Resources.ResourceManager", 841 981 "version": "4.0.1", 842 - "sha256": "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi" 982 + "hash": "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=" 843 983 }, 844 984 { 845 985 "pname": "System.Resources.ResourceManager", 846 986 "version": "4.3.0", 847 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 987 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 848 988 }, 849 989 { 850 990 "pname": "System.Runtime", 851 991 "version": "4.1.0", 852 - "sha256": "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m" 992 + "hash": "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=" 853 993 }, 854 994 { 855 995 "pname": "System.Runtime", 856 996 "version": "4.3.0", 857 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 997 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 858 998 }, 859 999 { 860 1000 "pname": "System.Runtime", 861 1001 "version": "4.3.1", 862 - "sha256": "03ch4d2acf6q037a4njxpll2kkx3dwzlg07yxr4z5m6j1kqgmm27" 1002 + "hash": "sha256-R9T68AzS1PJJ7v6ARz9vo88pKL1dWqLOANg4pkQjkA0=" 863 1003 }, 864 1004 { 865 1005 "pname": "System.Runtime.CompilerServices.Unsafe", 866 1006 "version": "4.5.2", 867 - "sha256": "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi" 868 - }, 869 - { 870 - "pname": "System.Runtime.CompilerServices.Unsafe", 871 - "version": "4.5.3", 872 - "sha256": "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln" 1007 + "hash": "sha256-8eUXXGWO2LL7uATMZye2iCpQOETn2jCcjUhG6coR5O8=" 873 1008 }, 874 1009 { 875 1010 "pname": "System.Runtime.CompilerServices.Unsafe", 876 1011 "version": "4.6.0", 877 - "sha256": "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m" 1012 + "hash": "sha256-FTjQeMuvqnKxpoVsVh/OlQ21NMaZiFtOdv7VdZ+Iv3Y=" 878 1013 }, 879 1014 { 880 1015 "pname": "System.Runtime.Extensions", 881 1016 "version": "4.1.0", 882 - "sha256": "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z" 1017 + "hash": "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=" 883 1018 }, 884 1019 { 885 1020 "pname": "System.Runtime.Extensions", 886 1021 "version": "4.3.0", 887 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 1022 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 888 1023 }, 889 1024 { 890 1025 "pname": "System.Runtime.Extensions", 891 1026 "version": "4.3.1", 892 - "sha256": "1bzkwqm1yhvm70yq2bx2s3mqfx2lr01sqsay8cl5n5xcbq07ynf6" 1027 + "hash": "sha256-xll/AF6sF1soQ15prAPIVHSH69CiL4E9OHVDHyrm868=" 893 1028 }, 894 1029 { 895 1030 "pname": "System.Runtime.Handles", 896 1031 "version": "4.0.1", 897 - "sha256": "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g" 1032 + "hash": "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w=" 898 1033 }, 899 1034 { 900 1035 "pname": "System.Runtime.Handles", 901 1036 "version": "4.3.0", 902 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 1037 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 903 1038 }, 904 1039 { 905 1040 "pname": "System.Runtime.InteropServices", 906 1041 "version": "4.1.0", 907 - "sha256": "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1" 1042 + "hash": "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY=" 908 1043 }, 909 1044 { 910 1045 "pname": "System.Runtime.InteropServices", 911 1046 "version": "4.3.0", 912 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 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=" 913 1053 }, 914 1054 { 915 - "pname": "System.Runtime.InteropServices.WindowsRuntime", 1055 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 916 1056 "version": "4.3.0", 917 - "sha256": "0bpsy91yqm2ryp5y9li8p6yh4yrxcvg9zvm569ifw25rpy67bgp9" 1057 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 918 1058 }, 919 1059 { 920 1060 "pname": "System.Runtime.Numerics", 921 1061 "version": "4.0.1", 922 - "sha256": "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn" 1062 + "hash": "sha256-1pJt5ZGxLPTX1mjOi8qZPXyyOMkYV0NstoUCv91HYPg=" 1063 + }, 1064 + { 1065 + "pname": "System.Runtime.Numerics", 1066 + "version": "4.3.0", 1067 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 923 1068 }, 924 1069 { 925 1070 "pname": "System.Runtime.Serialization.Primitives", 926 1071 "version": "4.1.1", 927 - "sha256": "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k" 1072 + "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" 928 1073 }, 929 1074 { 930 1075 "pname": "System.Security.AccessControl", 931 1076 "version": "5.0.0", 932 - "sha256": "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r" 1077 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 1078 + }, 1079 + { 1080 + "pname": "System.Security.Claims", 1081 + "version": "4.3.0", 1082 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 933 1083 }, 934 1084 { 935 1085 "pname": "System.Security.Cryptography.Algorithms", 936 1086 "version": "4.2.0", 937 - "sha256": "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85" 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=" 938 1113 }, 939 1114 { 940 1115 "pname": "System.Security.Cryptography.Encoding", 941 1116 "version": "4.0.0", 942 - "sha256": "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4" 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=" 943 1133 }, 944 1134 { 945 1135 "pname": "System.Security.Cryptography.Primitives", 946 1136 "version": "4.0.0", 947 - "sha256": "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh" 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=" 948 1163 }, 949 1164 { 950 1165 "pname": "System.Security.Principal.Windows", 951 1166 "version": "4.7.0", 952 - "sha256": "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d" 1167 + "hash": "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg=" 953 1168 }, 954 1169 { 955 1170 "pname": "System.Security.Principal.Windows", 956 1171 "version": "5.0.0", 957 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 1172 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 958 1173 }, 959 1174 { 960 1175 "pname": "System.Text.Encoding", 961 1176 "version": "4.0.11", 962 - "sha256": "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw" 1177 + "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" 963 1178 }, 964 1179 { 965 1180 "pname": "System.Text.Encoding", 966 1181 "version": "4.3.0", 967 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 1182 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 968 1183 }, 969 1184 { 970 1185 "pname": "System.Text.Encoding.CodePages", 971 1186 "version": "4.5.1", 972 - "sha256": "1z21qyfs6sg76rp68qdx0c9iy57naan89pg7p6i3qpj8kyzn921w" 1187 + "hash": "sha256-PIhkv59IXjyiuefdhKxS9hQfEwO9YWRuNudpo53HQfw=" 973 1188 }, 974 1189 { 975 1190 "pname": "System.Text.Encoding.Extensions", 976 1191 "version": "4.3.0", 977 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 1192 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 978 1193 }, 979 1194 { 980 1195 "pname": "System.Text.RegularExpressions", 981 1196 "version": "4.1.0", 982 - "sha256": "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7" 1197 + "hash": "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c=" 983 1198 }, 984 1199 { 985 1200 "pname": "System.Text.RegularExpressions", 986 1201 "version": "4.3.0", 987 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 1202 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 988 1203 }, 989 1204 { 990 1205 "pname": "System.Threading", 991 1206 "version": "4.0.11", 992 - "sha256": "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls" 1207 + "hash": "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=" 993 1208 }, 994 1209 { 995 1210 "pname": "System.Threading", 996 1211 "version": "4.3.0", 997 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 1212 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 998 1213 }, 999 1214 { 1000 1215 "pname": "System.Threading.Tasks", 1001 1216 "version": "4.0.11", 1002 - "sha256": "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5" 1217 + "hash": "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=" 1003 1218 }, 1004 1219 { 1005 1220 "pname": "System.Threading.Tasks", 1006 1221 "version": "4.3.0", 1007 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 1222 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 1008 1223 }, 1009 1224 { 1010 1225 "pname": "System.Threading.Tasks.Dataflow", 1011 1226 "version": "5.0.0", 1012 - "sha256": "028fimgwn5j9fv6m547c975a8b90d9qcnb89k5crjyspsnjcqbhy" 1227 + "hash": "sha256-Hi7MpNVXe5lZmQkty3BqIC2kyknskFLNdkkWy1+NDgk=" 1013 1228 }, 1014 1229 { 1015 1230 "pname": "System.Threading.Tasks.Extensions", 1016 1231 "version": "4.0.0", 1017 - "sha256": "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr" 1232 + "hash": "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE=" 1018 1233 }, 1019 1234 { 1020 1235 "pname": "System.Threading.Tasks.Extensions", 1021 1236 "version": "4.3.0", 1022 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 1237 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 1023 1238 }, 1024 1239 { 1025 1240 "pname": "System.Threading.Tasks.Extensions", 1026 1241 "version": "4.5.3", 1027 - "sha256": "0g7r6hm572ax8v28axrdxz1gnsblg6kszq17g51pj14a5rn2af7i" 1028 - }, 1029 - { 1030 - "pname": "System.Threading.Tasks.Extensions", 1031 - "version": "4.5.4", 1032 - "sha256": "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153" 1242 + "hash": "sha256-8TglbC6KBHlDeSfgr6d5dGn7wu8td4XERl2JUyo0+Tw=" 1033 1243 }, 1034 1244 { 1035 1245 "pname": "System.Threading.Thread", 1036 1246 "version": "4.0.0", 1037 - "sha256": "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc" 1247 + "hash": "sha256-7EtSJuKqcW107FYA5Ko9NFXEWUPIzNDtlfKaQV2pvb8=" 1038 1248 }, 1039 1249 { 1040 1250 "pname": "System.Threading.ThreadPool", 1041 1251 "version": "4.0.10", 1042 - "sha256": "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx" 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=" 1043 1268 }, 1044 1269 { 1045 1270 "pname": "System.ValueTuple", 1046 1271 "version": "4.5.0", 1047 - "sha256": "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy" 1272 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 1048 1273 }, 1049 1274 { 1050 1275 "pname": "System.Xml.ReaderWriter", 1051 1276 "version": "4.0.11", 1052 - "sha256": "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5" 1277 + "hash": "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA=" 1278 + }, 1279 + { 1280 + "pname": "System.Xml.ReaderWriter", 1281 + "version": "4.3.0", 1282 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 1053 1283 }, 1054 1284 { 1055 1285 "pname": "System.Xml.ReaderWriter", 1056 1286 "version": "4.3.1", 1057 - "sha256": "15f9vd7r0bxmyv754238bdckfg6sxaa3d4yx71hdzkz9k0mhjcky" 1287 + "hash": "sha256-fjIJK5jpz99gON2TNpTq2jw3WVtoCFLO9rUvkE/byZU=" 1058 1288 }, 1059 1289 { 1060 1290 "pname": "System.Xml.XDocument", 1061 1291 "version": "4.0.11", 1062 - "sha256": "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18" 1292 + "hash": "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg=" 1293 + }, 1294 + { 1295 + "pname": "System.Xml.XDocument", 1296 + "version": "4.3.0", 1297 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 1063 1298 }, 1064 1299 { 1065 1300 "pname": "Tmds.DBus", 1066 1301 "version": "0.9.0", 1067 - "sha256": "0vvx6sg8lxm23g5jvm5wh2gfs95mv85vd52lkq7d1b89bdczczf3" 1302 + "hash": "sha256-w332WVsJrdAOnlSUtgvatSTtnoC81C3LG6J2ip42fW8=" 1068 1303 } 1069 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 1236 "spdx": "MPL-2.0", 1237 1237 "vendorHash": "sha256-YdWs2orKhbwAZSQYC73t4e/vvVxk8LrBPG9ZC38VcZE=" 1238 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 + }, 1239 1248 "tailscale": { 1240 1249 "hash": "sha256-b2ZzXvlzlE+zv3Ufu4M5mcuLhyDkBbMznyM7NbiXAQs=", 1241 1250 "homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
+6 -5
pkgs/applications/science/astronomy/stellarium/default.nix
··· 28 28 29 29 stdenv.mkDerivation (finalAttrs: { 30 30 pname = "stellarium"; 31 - version = "24.3"; 31 + version = "24.4"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "Stellarium"; 35 35 repo = "stellarium"; 36 36 rev = "v${finalAttrs.version}"; 37 - hash = "sha256-shDp2tCOynMiEuTSx4TEK8V9h3EsMDq+kkZFhldrinM="; 37 + hash = "sha256-/xF9hXlPKhmpvpx9t1IgSqpvvqrGnd0xaf0QMvu+9IA="; 38 38 }; 39 39 40 40 patches = [ 41 - # Compatibility with INDI 2.0 series from https://github.com/Stellarium/stellarium/pull/3269 41 + # Fix indi headers from https://github.com/Stellarium/stellarium/pull/4025 42 42 (fetchpatch { 43 - url = "https://github.com/Stellarium/stellarium/commit/31fd7bebf33fa710ce53ac8375238a24758312bc.patch"; 44 - hash = "sha256-eJEqqitZgtV6noeCi8pDBYMVTFIVWXZU1fiEvoilX8o="; 43 + url = "https://github.com/Stellarium/stellarium/commit/9669d64fb4104830412c6c6c2b45811075a92300.patch"; 44 + hash = "sha256-CXeghxxRIV7Filveg+3pNAWymUpUuGnylvt4e8THJ8A="; 45 45 }) 46 46 ]; 47 47 ··· 123 123 license = lib.licenses.gpl2Plus; 124 124 platforms = lib.platforms.unix; 125 125 maintainers = with lib.maintainers; [ kilianar ]; 126 + broken = stdenv.hostPlatform.isDarwin; 126 127 }; 127 128 })
+21 -18
pkgs/applications/science/electronics/fritzing/default.nix
··· 21 21 let 22 22 # SHA256 of the fritzing-parts HEAD on the master branch, 23 23 # which contains the latest stable parts definitions 24 - partsSha = "015626e6cafb1fc7831c2e536d97ca2275a83d32"; 24 + partsSha = "76235099ed556e52003de63522fdd74e61d53a36"; 25 25 26 26 parts = fetchFromGitHub { 27 27 owner = "fritzing"; 28 28 repo = "fritzing-parts"; 29 29 rev = partsSha; 30 - hash = "sha256-5jw56cqxpT/8bf1q551WG53J6Lw5pH0HEtRUoNNMc+A="; 30 + hash = "sha256-1QVcPbRBOSYnNFsp7B2OyPXYuPaINRv9yEqGZFd662Y="; 31 31 }; 32 32 33 33 # Header-only library 34 34 svgpp = fetchFromGitHub { 35 35 owner = "svgpp"; 36 36 repo = "svgpp"; 37 - rev = "v1.3.0"; 38 - hash = "sha256-kJEVnMYnDF7bThDB60bGXalYgpn9c5/JCZkRSK5GoE4="; 37 + tag = "v1.3.1"; 38 + hash = "sha256-nW0ns06XWfUi22nOKZzFKgAOHVIlQqChW8HxUDOFMh4="; 39 39 }; 40 40 in 41 41 42 42 stdenv.mkDerivation { 43 43 pname = "fritzing"; 44 - version = "1.0.2"; 44 + version = "1.0.4"; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "fritzing"; 48 48 repo = "fritzing-app"; 49 - rev = "dbdbe34c843677df721c7b3fc3e32c0f737e7e95"; 50 - hash = "sha256-Xi5sPU2RGkqh7T+EOvwxJJKKYDhJfccyEZ8LBBTb2s4="; 49 + rev = "a8c6ef7cf66f7a42b9b233d6137f1b70a9573a25"; 50 + hash = "sha256-a/bWAUeDPj3g8BECOlXuqyCi4JgGLLs1605m380Drt0="; 51 51 }; 52 52 53 53 nativeBuildInputs = [ ··· 56 56 qttools 57 57 wrapQtAppsHook 58 58 ]; 59 + 59 60 buildInputs = 60 61 [ 61 62 qtbase ··· 90 91 cp -a ${parts}/* parts/ 91 92 ''; 92 93 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}"; 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 + }; 99 102 100 103 qmakeFlags = [ 101 104 "phoenix.pro" ··· 116 119 -folder "$out/share/fritzing" 117 120 ''; 118 121 119 - meta = with lib; { 122 + meta = { 120 123 description = "Open source prototyping tool for Arduino-based projects"; 121 - homepage = "https://fritzing.org/"; 122 - license = with licenses; [ 124 + homepage = "https://fritzing.org"; 125 + license = with lib.licenses; [ 123 126 gpl3 124 127 cc-by-sa-30 125 128 ]; 126 - maintainers = with maintainers; [ 129 + maintainers = with lib.maintainers; [ 127 130 robberer 128 131 muscaln 129 132 ]; 130 - platforms = platforms.unix; 133 + platforms = lib.platforms.unix; 131 134 mainProgram = "Fritzing"; 132 135 }; 133 136 }
+3 -3
pkgs/applications/version-management/git-absorb/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "git-absorb"; 11 - version = "0.6.15"; 11 + version = "0.6.16"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "tummychow"; 15 15 repo = "git-absorb"; 16 16 tag = version; 17 - hash = "sha256-7Y/gEym+29lTwJ7FbuvOqzbiMSzrY9f5IPhtvIJUKbU="; 17 + hash = "sha256-5ZCCrq/mc9FAjl7AMbuQyRak5sL1dG3qWnrdNzUu4Ss="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ installShellFiles ]; 21 21 22 - cargoHash = "sha256-Y/0In33y4mVTaE9yoBZ/3tRWcsSKgGjTCSHdjScNEj0="; 22 + cargoHash = "sha256-CzZgAjAIJryhFEJve3E62rg4QGRPSvBMuFZJzHGf09w="; 23 23 24 24 postInstall = 25 25 ''
+430 -460
pkgs/by-name/al/alttpr-opentracker/deps.json
··· 1 1 [ 2 2 { 3 3 "pname": "Autofac", 4 - "version": "6.3.0", 5 - "sha256": "0zg0lsqzb8hh7l97mfd2z3fxdab86sbmxkaprzi41v0hs1x3jd9b" 4 + "version": "7.1.0", 5 + "hash": "sha256-9UJoNg/6AV0I2xieMevylwfPu8A0qcpIWPJZFgzT6wA=" 6 6 }, 7 7 { 8 8 "pname": "Avalonia", 9 - "version": "0.10.12", 10 - "sha256": "1hb6v8sm7gd8aswdv0slnk8cvvxs5ac82knc3pzvxj0js2n4lnv2" 9 + "version": "0.10.22", 10 + "hash": "sha256-5EY2FMhtry/RJGXuHzMvdiGEnnDN5OP+M3cEdxR/n7c=" 11 11 }, 12 12 { 13 13 "pname": "Avalonia.Angle.Windows.Natives", 14 14 "version": "2.1.0.2020091801", 15 - "sha256": "04jm83cz7vkhhr6n2c9hya2k8i2462xbf6np4bidk55as0jdq43a" 15 + "hash": "sha256-ahDcJNCqlNniItcat7owREQ0hfIwMWFNhnDu89lAVRI=" 16 + }, 17 + { 18 + "pname": "Avalonia.BuildServices", 19 + "version": "0.0.29", 20 + "hash": "sha256-WPHRMNowRnYSCh88DWNBCltWsLPyOfzXGzBqLYE7tRY=" 16 21 }, 17 22 { 18 23 "pname": "Avalonia.Controls.DataGrid", 19 - "version": "0.10.12", 20 - "sha256": "1r8qi0kgd9rqbacnriy5sa684d12vxi45a6n2a4w7ydxr97zv5nm" 24 + "version": "0.10.22", 25 + "hash": "sha256-8p4qWuy8BeXaUVM6H8hWJ2ajl7tgbBAWN3EoiKPmphM=" 21 26 }, 22 27 { 23 28 "pname": "Avalonia.Desktop", 24 - "version": "0.10.12", 25 - "sha256": "17ng7vvmynnmll7fb8zkjlhcn0ksg7p4v6kw207yq72acgvyn96g" 29 + "version": "0.10.22", 30 + "hash": "sha256-p4fEyykjYwaOgTSBNtK0+v+VvIypg818R4mBWnGzmHI=" 26 31 }, 27 32 { 28 33 "pname": "Avalonia.Diagnostics", 29 - "version": "0.10.12", 30 - "sha256": "17skzs05iv5ljgnqm36zrbhrh3x20xf5hgni543i02zffj2015ki" 34 + "version": "0.10.22", 35 + "hash": "sha256-CIS6A47DmbNt/AQGoDWfBs/+7/0busUFCdvX0Su+m9Y=" 31 36 }, 32 37 { 33 38 "pname": "Avalonia.FreeDesktop", 34 - "version": "0.10.12", 35 - "sha256": "00920pdiv8wlpym0s80nz8lfmw515ikrr5f2a6sr4kmjwfd9cffj" 39 + "version": "0.10.22", 40 + "hash": "sha256-IAyKCqAUMLpm1r39AI7KzeC36dNe87oJwkk7gxJj5Y0=" 36 41 }, 37 42 { 38 43 "pname": "Avalonia.Markup.Xaml.Loader", 39 - "version": "0.10.12", 40 - "sha256": "18glwqn4a8p3rz5zsp1xyrm5xwv853056nykf7mdcv1lglh74fsm" 44 + "version": "0.10.22", 45 + "hash": "sha256-XRl10uLLt57zNxXL9CXWWTlcXEtX2znOVg5VqfyngZc=" 41 46 }, 42 47 { 43 48 "pname": "Avalonia.Native", 44 - "version": "0.10.12", 45 - "sha256": "1j6gxg0n55923rbw2p7z6yh27i81xrzpqarb268d3hd6hgjycwc1" 49 + "version": "0.10.22", 50 + "hash": "sha256-I+4YCsFXcXOYccSWwO9nxFsk4wITafkSkj/55uO5rSo=" 46 51 }, 47 52 { 48 53 "pname": "Avalonia.ReactiveUI", 49 - "version": "0.10.12", 50 - "sha256": "04ga7f8bmz3bqp4dsc4fzrphfq61zf62hlz4nbazf1igx0jzdygy" 54 + "version": "0.10.22", 55 + "hash": "sha256-czEyKZml1wJSLWULT124pPOKkJr5gCMT9eu4qaCJl9A=" 51 56 }, 52 57 { 53 58 "pname": "Avalonia.Remote.Protocol", 54 - "version": "0.10.12", 55 - "sha256": "0ghrb8yf4qahwlpa2appk7q0m0n01q0s65nx1xj1plpi4jr6vvw2" 59 + "version": "0.10.22", 60 + "hash": "sha256-dEZCLrgO5ogFJ+yAu030NDAWLs98KrLpMcMx2AX8+ig=" 56 61 }, 57 62 { 58 63 "pname": "Avalonia.Skia", 59 - "version": "0.10.12", 60 - "sha256": "1qj0sw4780za3p6hbwvx1p3b6px3s5vp3ml3vvyak1bajvifz969" 64 + "version": "0.10.22", 65 + "hash": "sha256-4ty55BXtpeytJtGCnCyD4PBXk/fQPVmwXvr1S3MBseI=" 61 66 }, 62 67 { 63 68 "pname": "Avalonia.Win32", 64 - "version": "0.10.12", 65 - "sha256": "1af174qca95gxf04zhxm716mi1dazfz7k3995i1nyaz7hygs3p04" 69 + "version": "0.10.22", 70 + "hash": "sha256-AHUqjeqvJkHKuRSvHma+MbfgnNs1/YmVZkyFHoU7SQQ=" 66 71 }, 67 72 { 68 73 "pname": "Avalonia.X11", 69 - "version": "0.10.12", 70 - "sha256": "1jjg4lhg0a95laffwm7imgs92q06whrfkaszm7svgfv1ryazv71q" 74 + "version": "0.10.22", 75 + "hash": "sha256-PIvSUg01ggYr8w8IONoYo0cgnqwze2v+t0WvVMOEe8o=" 71 76 }, 72 77 { 73 78 "pname": "Avalonia.Xaml.Behaviors", 74 - "version": "0.10.12", 75 - "sha256": "0j897knwxpl6sss8v2wrhy4bw4nw4jqc04n8b8d4s76jaqcr3z2h" 79 + "version": "0.10.19", 80 + "hash": "sha256-I4qs8Rl9pyRVGvsh5n0V+H+CTdg/sqOSomFL5z7BoXY=" 76 81 }, 77 82 { 78 83 "pname": "Avalonia.Xaml.Interactions", 79 - "version": "0.10.12", 80 - "sha256": "0nyqg66sg7garc2k729k3dqixbb3asvsjd2kxympfx9q6xyz6vrh" 84 + "version": "0.10.19", 85 + "hash": "sha256-XLM3Ov0f3S78K1RIZv6tNPpl/ai5yi34Z78zwgGNzgE=" 81 86 }, 82 87 { 83 88 "pname": "Avalonia.Xaml.Interactivity", 84 - "version": "0.10.12", 85 - "sha256": "13qbmz39bf29wvq82b1irci8y50fjhhj563cdwd235nm633sixqb" 89 + "version": "0.10.19", 90 + "hash": "sha256-ZxX8FIGg2+H70c/81hnILW2RVhSNSUXIZhZcWpQE3FE=" 86 91 }, 87 92 { 88 93 "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" 94 + "version": "5.1.1", 95 + "hash": "sha256-oVkQB+ON7S6Q27OhXrTLaxTL0kWB58HZaFFuiw4iTrE=" 96 96 }, 97 97 { 98 98 "pname": "DotNet.Bundle", 99 99 "version": "0.9.13", 100 - "sha256": "0awzvk62hgszm9b8ar87y862aj8nlm77d7hgfmp84mxny0ag03jl" 100 + "hash": "sha256-VA7wFPC2V4JudQ+edk6lFkklDPIHZYVWql8/KMzcnys=" 101 101 }, 102 102 { 103 103 "pname": "DynamicData", 104 - "version": "7.4.11", 105 - "sha256": "1vrrwkmqrdzr4ncjihfzik5ykmy1234iyp2q5qk8spz6y0gwq2h8" 104 + "version": "7.1.1", 105 + "hash": "sha256-cFskEA5n9Q6wS+nt4nR1jaiC+TzirBu8pHL9g/jErJM=" 106 106 }, 107 107 { 108 108 "pname": "DynamicData", 109 - "version": "7.4.9", 110 - "sha256": "0ssgh42fi5m6xyw36f4km04ls9nq4w8cpbck8gh7g8n3ixz05rrw" 109 + "version": "7.14.2", 110 + "hash": "sha256-UyCC3hPCEm8RoK+d66vqagY4Yi0GzRwO1qoKcAhPZx4=" 111 111 }, 112 112 { 113 113 "pname": "ExpectedObjects", 114 114 "version": "3.5.4", 115 - "sha256": "1mklg6dx8biaaf9jxp09rddsw66l42r4fpsgnmm6szn6fj2n888k" 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=" 116 126 }, 117 127 { 118 128 "pname": "HarfBuzzSharp", 119 - "version": "2.8.2-preview.178", 120 - "sha256": "1p5nwzl7jpypsd6df7hgcf47r977anjlyv21wacmalsj6lvdgnvn" 129 + "version": "2.8.2.1-preview.108", 130 + "hash": "sha256-H2C71GTwKMoTNq2GrNbusLUS7+ca53MYfWYV70i/RHc=" 121 131 }, 122 132 { 123 133 "pname": "HarfBuzzSharp.NativeAssets.Linux", 124 - "version": "2.8.2-preview.178", 125 - "sha256": "1402ylkxbgcnagcarqlfvg4gppy2pqs3bmin4n5mphva1g7bqb2p" 134 + "version": "2.8.2.1-preview.108", 135 + "hash": "sha256-ROYaZH1MZVKZ+6ToHq+GCf3FC5rz9Z7RWOEJlf1+m5s=" 126 136 }, 127 137 { 128 138 "pname": "HarfBuzzSharp.NativeAssets.macOS", 129 - "version": "2.8.2-preview.178", 130 - "sha256": "0p8miaclnbfpacc1jaqxwfg0yfx9byagi4j4k91d9621vd19i8b2" 139 + "version": "2.8.2.1-preview.108", 140 + "hash": "sha256-WgIgnHLOJw52XKccDwmsptTBjTcWgT7dL064yHmmZ5s=" 131 141 }, 132 142 { 133 143 "pname": "HarfBuzzSharp.NativeAssets.WebAssembly", 134 - "version": "2.8.2-preview.178", 135 - "sha256": "1n9jay9sji04xly6n8bzz4591fgy8i65p21a8mv5ip9lsyj1c320" 144 + "version": "2.8.2.1-preview.108", 145 + "hash": "sha256-pXSDS81Y185RZVqA5ALPGsuOcB1GSTn+VpdbPcpYeJY=" 136 146 }, 137 147 { 138 148 "pname": "HarfBuzzSharp.NativeAssets.Win32", 139 - "version": "2.8.2-preview.178", 140 - "sha256": "1r5syii96wv8q558cvsqw3lr10cdw6677lyiy82p6i3if51v3mr7" 149 + "version": "2.8.2.1-preview.108", 150 + "hash": "sha256-YZaC40YqLKiOrVECbKivJsEqkydZgQfLrENXLJOt3lg=" 141 151 }, 142 152 { 143 153 "pname": "JetBrains.Annotations", 144 - "version": "2021.3.0", 145 - "sha256": "01ssylllbwpana2w3iybi533zlvcsbhzjc8kr0g4kg307kjbfn8v" 154 + "version": "2023.2.0", 155 + "hash": "sha256-Um10fSmO+21I7f+lbzzVq5e8GBijJ9amTvOlt362p1s=" 146 156 }, 147 157 { 148 158 "pname": "Microsoft.CodeAnalysis.Analyzers", 149 - "version": "3.3.3", 150 - "sha256": "09m4cpry8ivm9ga1abrxmvw16sslxhy2k5sl14zckhqb1j164im6" 159 + "version": "3.3.4", 160 + "hash": "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE=" 151 161 }, 152 162 { 153 163 "pname": "Microsoft.CodeAnalysis.Common", 154 - "version": "4.0.1", 155 - "sha256": "0axjv1nhk1z9d4c51d9yxdp09l8yqqnqaifhqcwnxnv0r4y5cka9" 164 + "version": "4.7.0", 165 + "hash": "sha256-nDDpCy8WQADxo7LzWkDupuxs0GCjvuhX8EeKpjTnRP4=" 156 166 }, 157 167 { 158 168 "pname": "Microsoft.CodeAnalysis.CSharp", 159 - "version": "4.0.1", 160 - "sha256": "1h6jfifg7pw2vacpdds4v4jqnaydg9b108irf315wzx6rh8yv9cb" 169 + "version": "4.7.0", 170 + "hash": "sha256-0FoP+zHqbhLhyjTPx8I7MCfHqCbmhwE8aRCVe4eC49M=" 161 171 }, 162 172 { 163 173 "pname": "Microsoft.CodeAnalysis.CSharp.Scripting", 164 - "version": "4.0.1", 165 - "sha256": "0ncbld51ja7hp6p2cabw0dx4km2syiz0z58al62h21cpbjfnls5p" 174 + "version": "4.7.0", 175 + "hash": "sha256-528s2qnDVHswC9DvE1+Rp9Jx83n3Y5RJvtA20x3pZgA=" 166 176 }, 167 177 { 168 178 "pname": "Microsoft.CodeAnalysis.NetAnalyzers", 169 - "version": "6.0.0", 170 - "sha256": "06zy947m5lrbwb684g42ijb07r5jsqycvfnphc6cqfdrfnzqv6k9" 179 + "version": "8.0.0", 180 + "hash": "sha256-Z6MIb9lJskYOEiBZR36pwFI5wWekajx5WJvVA2a/f9Y=" 171 181 }, 172 182 { 173 183 "pname": "Microsoft.CodeAnalysis.Scripting.Common", 174 - "version": "4.0.1", 175 - "sha256": "0zhrlk30js7dp6i76zd7zilaxq26gwsl3pk85p919039786sqs9p" 184 + "version": "4.7.0", 185 + "hash": "sha256-eESDYyoGmGB6fbgDJvCaFPbwB2Cq9SFpP5nhYxK9bEw=" 176 186 }, 177 187 { 178 188 "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" 189 + "version": "17.7.2", 190 + "hash": "sha256-FfKMhyVEAiRd3VDkotnFHnSmlYGQTh4ZqkEF2+8sriY=" 186 191 }, 187 192 { 188 193 "pname": "Microsoft.CSharp", 189 194 "version": "4.7.0", 190 - "sha256": "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j" 195 + "hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0=" 191 196 }, 192 197 { 193 198 "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" 199 + "version": "17.7.2", 200 + "hash": "sha256-EMtV5zcucAcJMGIb/KSqIQnK7PA6aJCgZSobc+5t6SE=" 201 201 }, 202 202 { 203 203 "pname": "Microsoft.NETCore.Platforms", 204 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" 205 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 216 206 }, 217 207 { 218 208 "pname": "Microsoft.NETCore.Targets", 219 209 "version": "1.1.0", 220 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 221 - }, 222 - { 223 - "pname": "Microsoft.NETCore.Targets", 224 - "version": "5.0.0", 225 - "sha256": "0z3qyv7qal5irvabc8lmkh58zsl42mrzd1i0sssvzhv4q4kl3cg6" 210 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 226 211 }, 227 212 { 228 213 "pname": "Microsoft.TestPlatform.ObjectModel", 229 - "version": "17.0.0", 230 - "sha256": "1bh5scbvl6ndldqv20sl34h4y257irm9ziv2wyfc3hka6912fhn7" 214 + "version": "17.7.2", 215 + "hash": "sha256-uOe3ELE7iAusTBgxhsx78d4lBw28eDTew13ZnW2bsnU=" 231 216 }, 232 217 { 233 218 "pname": "Microsoft.TestPlatform.TestHost", 234 - "version": "17.0.0", 235 - "sha256": "06mn31cgpp7d8lwdyjanh89prc66j37dchn74vrd9s588rq0y70r" 219 + "version": "17.7.2", 220 + "hash": "sha256-pox8kez5tgXX4mAiu9qybrlI7oURzPm7YsCd42N4+us=" 236 221 }, 237 222 { 238 223 "pname": "Microsoft.Win32.Primitives", 239 224 "version": "4.3.0", 240 - "sha256": "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq" 225 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 241 226 }, 242 227 { 243 228 "pname": "Microsoft.Win32.SystemEvents", 244 - "version": "6.0.0", 245 - "sha256": "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p" 229 + "version": "7.0.0", 230 + "hash": "sha256-i6JojctqrqfJ4Wa+BDtaKZEol26jYq5DTQHar2M9B64=" 246 231 }, 247 232 { 248 233 "pname": "NETStandard.Library", 249 234 "version": "1.6.1", 250 - "sha256": "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8" 235 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 251 236 }, 252 237 { 253 238 "pname": "Newtonsoft.Json", 254 239 "version": "13.0.1", 255 - "sha256": "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb" 240 + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" 256 241 }, 257 242 { 258 243 "pname": "Newtonsoft.Json", 259 - "version": "9.0.1", 260 - "sha256": "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r" 244 + "version": "13.0.3", 245 + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" 261 246 }, 262 247 { 263 248 "pname": "NSubstitute", 264 - "version": "4.3.0", 265 - "sha256": "026kx6fab9r1a0m8p9hlznp73qhh44k4i0352szvchsis6vlj9gm" 249 + "version": "5.1.0", 250 + "hash": "sha256-ORpubFd6VoRjA9ZeyZdJPY/xnQXM90O6McMswt8VVG4=" 266 251 }, 267 252 { 268 253 "pname": "NuGet.Frameworks", 269 - "version": "5.0.0", 270 - "sha256": "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr" 254 + "version": "6.5.0", 255 + "hash": "sha256-ElqfN4CcKxT3hP2qvxxObb4mnBlYG89IMxO0Sm5oZ2g=" 271 256 }, 272 257 { 273 258 "pname": "Packaging.Targets", 274 259 "version": "0.1.220", 275 - "sha256": "0ci4jkkqk70vwzf2sgc44a8dap70afp6yhvj967shy7anffxb511" 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 276 }, 277 277 { 278 278 "pname": "ReactiveUI", 279 279 "version": "13.2.10", 280 - "sha256": "0x4pk45wipzsjzkv23as8l0sdds665l9404gaix8c0z2n24s76gg" 280 + "hash": "sha256-75mjibDiA4Z6VI8AkmgxRremAUVaDbHnl/rfyAuZl3Q=" 281 281 }, 282 282 { 283 283 "pname": "ReactiveUI", 284 - "version": "17.1.17", 285 - "sha256": "1v0w88mk8bh68lcj968q61zyx6l07himild605c2xi5lb6a42z71" 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=" 286 376 }, 287 377 { 288 378 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 289 379 "version": "4.3.0", 290 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 380 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 291 381 }, 292 382 { 293 383 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 294 384 "version": "4.3.0", 295 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 385 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 296 386 }, 297 387 { 298 388 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 299 389 "version": "4.3.0", 300 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 390 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 301 391 }, 302 392 { 303 393 "pname": "runtime.native.System", 304 394 "version": "4.3.0", 305 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 395 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 306 396 }, 307 397 { 308 398 "pname": "runtime.native.System.IO.Compression", 309 399 "version": "4.3.0", 310 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 400 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 311 401 }, 312 402 { 313 403 "pname": "runtime.native.System.Net.Http", 314 404 "version": "4.3.0", 315 - "sha256": "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk" 405 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 316 406 }, 317 407 { 318 408 "pname": "runtime.native.System.Security.Cryptography.Apple", 319 409 "version": "4.3.0", 320 - "sha256": "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q" 410 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 321 411 }, 322 412 { 323 413 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 324 414 "version": "4.3.0", 325 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 415 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 326 416 }, 327 417 { 328 418 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 329 419 "version": "4.3.0", 330 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 420 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 331 421 }, 332 422 { 333 423 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 334 424 "version": "4.3.0", 335 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 425 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 336 426 }, 337 427 { 338 428 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 339 429 "version": "4.3.0", 340 - "sha256": "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi" 430 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 341 431 }, 342 432 { 343 433 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 344 434 "version": "4.3.0", 345 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 435 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 346 436 }, 347 437 { 348 438 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 349 439 "version": "4.3.0", 350 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 440 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 351 441 }, 352 442 { 353 443 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 354 444 "version": "4.3.0", 355 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 445 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 356 446 }, 357 447 { 358 448 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 359 449 "version": "4.3.0", 360 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 450 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 361 451 }, 362 452 { 363 453 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 364 454 "version": "4.3.0", 365 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 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=" 366 496 }, 367 497 { 368 498 "pname": "Serilog", 369 499 "version": "2.10.0", 370 - "sha256": "08bih205i632ywryn3zxkhb15dwgyaxbhmm1z3b5nmby9fb25k7v" 500 + "hash": "sha256-+8wilkt+VVvW+KFWuLryj7cSFpz9D+sz92KYWICAcSE=" 501 + }, 502 + { 503 + "pname": "Serilog", 504 + "version": "3.0.1", 505 + "hash": "sha256-cfcZXT2eQ4K6RQ0twDYPN5jkDpG9dYqpmHJX4zWrL+o=" 371 506 }, 372 507 { 373 508 "pname": "Serilog.Sinks.Debug", 374 509 "version": "2.0.0", 375 - "sha256": "1i7j870l47gan3gpnnlzkccn5lbm7518cnkp25a3g5gp9l0dbwpw" 510 + "hash": "sha256-/PLVAE33lTdUEXdahkI5ddFiGZufWnvfsOodQsFB8sQ=" 376 511 }, 377 512 { 378 513 "pname": "Serilog.Sinks.File", 379 514 "version": "5.0.0", 380 - "sha256": "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q" 515 + "hash": "sha256-GKy9hwOdlu2W0Rw8LiPyEwus+sDtSOTl8a5l9uqz+SQ=" 381 516 }, 382 517 { 383 518 "pname": "SkiaSharp", 384 - "version": "2.88.0-preview.178", 385 - "sha256": "062g14s6b2bixanpwihj3asm3jwvfw15mhvzqv6901afrlgzx4nk" 519 + "version": "2.88.1-preview.108", 520 + "hash": "sha256-5r0MDLe804yedcgOgCDsZ6PvsLA9gZqimo/V16AZVQc=" 386 521 }, 387 522 { 388 523 "pname": "SkiaSharp.NativeAssets.Linux", 389 - "version": "2.88.0-preview.178", 390 - "sha256": "07kga1j51l3l302nvf537zg5clf6rflinjy0xd6i06cmhpkf3ksw" 524 + "version": "2.88.1-preview.108", 525 + "hash": "sha256-10t3pmhdfwRnpabAXIBAnjhZkhKxOTb6XfxqgZkUTqY=" 391 526 }, 392 527 { 393 528 "pname": "SkiaSharp.NativeAssets.macOS", 394 - "version": "2.88.0-preview.178", 395 - "sha256": "14p95nxccs6yq4rn2h9zbb60k0232k6349zdpy31jcfr6gc99cgi" 529 + "version": "2.88.1-preview.108", 530 + "hash": "sha256-JTiKU3h2UMjQBEOYOq3rIRsjwqynXab0S0tAqk/Dl+0=" 396 531 }, 397 532 { 398 533 "pname": "SkiaSharp.NativeAssets.WebAssembly", 399 - "version": "2.88.0-preview.178", 400 - "sha256": "09jmcg5k1vpsal8jfs90mwv0isf2y5wq3h4hd77rv6vffn5ic4sm" 534 + "version": "2.88.1-preview.108", 535 + "hash": "sha256-rZ1Snmz+0daTtt4uPavCYRriRnWg+QlyVidNxCV+CSk=" 401 536 }, 402 537 { 403 538 "pname": "SkiaSharp.NativeAssets.Win32", 404 - "version": "2.88.0-preview.178", 405 - "sha256": "0ficil702lv3fvwpngbqh5l85i05l5jafzyh4jprzshr2qbnd8nl" 539 + "version": "2.88.1-preview.108", 540 + "hash": "sha256-9noqwRicVwd920EvHzGVcDvgU5j6Zaj54LoWnC9d6RU=" 406 541 }, 407 542 { 408 543 "pname": "Splat", 409 544 "version": "10.0.1", 410 - "sha256": "18fzrn7xwjzxj4v3drs8djd3yf14bnq5n9n8vdnwfa1zk5jqpsb9" 545 + "hash": "sha256-aemLZZk/KMdt28gmW7BdJDg/mmxI5zY2kf1L3o/N36E=" 411 546 }, 412 547 { 413 548 "pname": "Splat", 414 - "version": "14.1.17", 415 - "sha256": "1akhj04sbxhhfj6zdlr5c0sh696747b0x46g3ayv4yl15kwq6pz5" 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=" 416 561 }, 417 562 { 418 563 "pname": "System.AppContext", 419 564 "version": "4.3.0", 420 - "sha256": "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya" 565 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 421 566 }, 422 567 { 423 568 "pname": "System.Buffers", 424 569 "version": "4.3.0", 425 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 570 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 426 571 }, 427 572 { 428 573 "pname": "System.Buffers", 429 574 "version": "4.5.1", 430 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 431 - }, 432 - { 433 - "pname": "System.Collections", 434 - "version": "4.0.11", 435 - "sha256": "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6" 575 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 436 576 }, 437 577 { 438 578 "pname": "System.Collections", 439 579 "version": "4.3.0", 440 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 580 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 441 581 }, 442 582 { 443 583 "pname": "System.Collections.Concurrent", 444 584 "version": "4.3.0", 445 - "sha256": "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8" 585 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 446 586 }, 447 587 { 448 588 "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" 589 + "version": "7.0.0", 590 + "hash": "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk=" 466 591 }, 467 592 { 468 593 "pname": "System.ComponentModel.Annotations", 469 594 "version": "4.5.0", 470 - "sha256": "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p" 595 + "hash": "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso=" 471 596 }, 472 597 { 473 598 "pname": "System.ComponentModel.Annotations", 474 599 "version": "5.0.0", 475 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 476 - }, 477 - { 478 - "pname": "System.ComponentModel.Primitives", 479 - "version": "4.3.0", 480 - "sha256": "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0" 600 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 481 601 }, 482 602 { 483 - "pname": "System.ComponentModel.TypeConverter", 484 - "version": "4.3.0", 485 - "sha256": "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x" 603 + "pname": "System.Configuration.ConfigurationManager", 604 + "version": "4.4.0", 605 + "hash": "sha256-+8wGYllXnIxRzy9dLhZFB88GoPj8ivYXS0KUfcivT8I=" 486 606 }, 487 607 { 488 608 "pname": "System.Console", 489 609 "version": "4.3.0", 490 - "sha256": "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay" 491 - }, 492 - { 493 - "pname": "System.Diagnostics.Debug", 494 - "version": "4.0.11", 495 - "sha256": "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz" 610 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 496 611 }, 497 612 { 498 613 "pname": "System.Diagnostics.Debug", 499 614 "version": "4.3.0", 500 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 615 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 501 616 }, 502 617 { 503 618 "pname": "System.Diagnostics.DiagnosticSource", 504 619 "version": "4.3.0", 505 - "sha256": "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq" 620 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 506 621 }, 507 622 { 508 623 "pname": "System.Diagnostics.DiagnosticSource", 509 - "version": "6.0.0", 510 - "sha256": "0rrihs9lnb1h6x4h0hn6kgfnh58qq7hx8qq99gh6fayx4dcnx3s5" 624 + "version": "4.7.1", 625 + "hash": "sha256-l2TM1pfyRF70Xmzoz1dAqWkB8+/K6b8t5Tj7aF1UO9Y=" 511 626 }, 512 627 { 513 - "pname": "System.Diagnostics.Tools", 514 - "version": "4.0.1", 515 - "sha256": "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x" 628 + "pname": "System.Diagnostics.EventLog", 629 + "version": "6.0.0", 630 + "hash": "sha256-zUXIQtAFKbiUMKCrXzO4mOTD5EUphZzghBYKXprowSM=" 516 631 }, 517 632 { 518 633 "pname": "System.Diagnostics.Tools", 519 634 "version": "4.3.0", 520 - "sha256": "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1" 521 - }, 522 - { 523 - "pname": "System.Diagnostics.TraceSource", 524 - "version": "4.3.0", 525 - "sha256": "1kyw4d7dpjczhw6634nrmg7yyyzq72k75x38y0l0nwhigdlp1766" 635 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 526 636 }, 527 637 { 528 638 "pname": "System.Diagnostics.Tracing", 529 639 "version": "4.3.0", 530 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 640 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 531 641 }, 532 642 { 533 643 "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" 644 + "version": "7.0.0", 645 + "hash": "sha256-t4FBgTMhuOA5FA23fg0WQOGuH0njV7hJXST/Ln/Znks=" 551 646 }, 552 647 { 553 648 "pname": "System.Globalization", 554 649 "version": "4.3.0", 555 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 650 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 556 651 }, 557 652 { 558 653 "pname": "System.Globalization.Calendars", 559 654 "version": "4.3.0", 560 - "sha256": "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq" 655 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 561 656 }, 562 657 { 563 658 "pname": "System.Globalization.Extensions", 564 659 "version": "4.3.0", 565 - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" 566 - }, 567 - { 568 - "pname": "System.IO", 569 - "version": "4.1.0", 570 - "sha256": "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp" 660 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 571 661 }, 572 662 { 573 663 "pname": "System.IO", 574 664 "version": "4.3.0", 575 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 665 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 576 666 }, 577 667 { 578 668 "pname": "System.IO.Compression", 579 669 "version": "4.3.0", 580 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 670 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 581 671 }, 582 672 { 583 673 "pname": "System.IO.Compression.ZipFile", 584 674 "version": "4.3.0", 585 - "sha256": "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar" 586 - }, 587 - { 588 - "pname": "System.IO.FileSystem", 589 - "version": "4.0.1", 590 - "sha256": "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1" 675 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 591 676 }, 592 677 { 593 678 "pname": "System.IO.FileSystem", 594 679 "version": "4.3.0", 595 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 596 - }, 597 - { 598 - "pname": "System.IO.FileSystem.Primitives", 599 - "version": "4.0.1", 600 - "sha256": "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612" 680 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 601 681 }, 602 682 { 603 683 "pname": "System.IO.FileSystem.Primitives", 604 684 "version": "4.3.0", 605 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 606 - }, 607 - { 608 - "pname": "System.Linq", 609 - "version": "4.1.0", 610 - "sha256": "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5" 685 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 611 686 }, 612 687 { 613 688 "pname": "System.Linq", 614 689 "version": "4.3.0", 615 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 616 - }, 617 - { 618 - "pname": "System.Linq.Expressions", 619 - "version": "4.1.0", 620 - "sha256": "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg" 690 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 621 691 }, 622 692 { 623 693 "pname": "System.Linq.Expressions", 624 694 "version": "4.3.0", 625 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 695 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 626 696 }, 627 697 { 628 698 "pname": "System.Memory", 629 699 "version": "4.5.3", 630 - "sha256": "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a" 700 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 631 701 }, 632 702 { 633 - "pname": "System.Memory", 634 - "version": "4.5.4", 635 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 703 + "pname": "System.Net.Http", 704 + "version": "4.3.0", 705 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 636 706 }, 637 707 { 638 - "pname": "System.Net.Http", 708 + "pname": "System.Net.NameResolution", 639 709 "version": "4.3.0", 640 - "sha256": "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j" 710 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 641 711 }, 642 712 { 643 713 "pname": "System.Net.Primitives", 644 714 "version": "4.3.0", 645 - "sha256": "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii" 715 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 646 716 }, 647 717 { 648 718 "pname": "System.Net.Sockets", 649 719 "version": "4.3.0", 650 - "sha256": "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla" 720 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 651 721 }, 652 722 { 653 723 "pname": "System.Numerics.Vectors", 654 724 "version": "4.5.0", 655 - "sha256": "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59" 725 + "hash": "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8=" 656 726 }, 657 727 { 658 728 "pname": "System.ObjectModel", 659 - "version": "4.0.12", 660 - "sha256": "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj" 729 + "version": "4.3.0", 730 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 661 731 }, 662 732 { 663 - "pname": "System.ObjectModel", 733 + "pname": "System.Private.Uri", 664 734 "version": "4.3.0", 665 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 735 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 666 736 }, 667 737 { 668 738 "pname": "System.Reactive", 669 739 "version": "5.0.0", 670 - "sha256": "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik" 740 + "hash": "sha256-M5Z8pw8rVb8ilbnTdaOptzk5VFd5DlKa7zzCpuytTtE=" 671 741 }, 672 742 { 673 - "pname": "System.Reflection", 674 - "version": "4.1.0", 675 - "sha256": "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9" 743 + "pname": "System.Reactive", 744 + "version": "6.0.0", 745 + "hash": "sha256-hXB18OsiUHSCmRF3unAfdUEcbXVbG6/nZxcyz13oe9Y=" 676 746 }, 677 747 { 678 748 "pname": "System.Reflection", 679 749 "version": "4.3.0", 680 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 681 - }, 682 - { 683 - "pname": "System.Reflection.Emit", 684 - "version": "4.0.1", 685 - "sha256": "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp" 750 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 686 751 }, 687 752 { 688 753 "pname": "System.Reflection.Emit", 689 754 "version": "4.3.0", 690 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 755 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 691 756 }, 692 757 { 693 758 "pname": "System.Reflection.Emit", 694 759 "version": "4.7.0", 695 - "sha256": "121l1z2ypwg02yz84dy6gr82phpys0njk7yask3sihgy214w43qp" 696 - }, 697 - { 698 - "pname": "System.Reflection.Emit.ILGeneration", 699 - "version": "4.0.1", 700 - "sha256": "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0" 760 + "hash": "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg=" 701 761 }, 702 762 { 703 763 "pname": "System.Reflection.Emit.ILGeneration", 704 764 "version": "4.3.0", 705 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 706 - }, 707 - { 708 - "pname": "System.Reflection.Emit.Lightweight", 709 - "version": "4.0.1", 710 - "sha256": "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr" 765 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 711 766 }, 712 767 { 713 768 "pname": "System.Reflection.Emit.Lightweight", 714 769 "version": "4.3.0", 715 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 716 - }, 717 - { 718 - "pname": "System.Reflection.Extensions", 719 - "version": "4.0.1", 720 - "sha256": "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn" 770 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 721 771 }, 722 772 { 723 773 "pname": "System.Reflection.Extensions", 724 774 "version": "4.3.0", 725 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 775 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 726 776 }, 727 777 { 728 778 "pname": "System.Reflection.Metadata", 729 779 "version": "1.6.0", 730 - "sha256": "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4" 780 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 731 781 }, 732 782 { 733 783 "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" 784 + "version": "7.0.0", 785 + "hash": "sha256-GwAKQhkhPBYTqmRdG9c9taqrKSKDwyUgOEhWLKxWNPI=" 741 786 }, 742 787 { 743 788 "pname": "System.Reflection.Primitives", 744 789 "version": "4.3.0", 745 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 746 - }, 747 - { 748 - "pname": "System.Reflection.TypeExtensions", 749 - "version": "4.1.0", 750 - "sha256": "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7" 790 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 751 791 }, 752 792 { 753 793 "pname": "System.Reflection.TypeExtensions", 754 794 "version": "4.3.0", 755 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 756 - }, 757 - { 758 - "pname": "System.Resources.ResourceManager", 759 - "version": "4.0.1", 760 - "sha256": "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi" 795 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 761 796 }, 762 797 { 763 798 "pname": "System.Resources.ResourceManager", 764 799 "version": "4.3.0", 765 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 766 - }, 767 - { 768 - "pname": "System.Runtime", 769 - "version": "4.1.0", 770 - "sha256": "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m" 800 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 771 801 }, 772 802 { 773 803 "pname": "System.Runtime", 774 804 "version": "4.3.0", 775 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 776 - }, 777 - { 778 - "pname": "System.Runtime", 779 - "version": "4.3.1", 780 - "sha256": "03ch4d2acf6q037a4njxpll2kkx3dwzlg07yxr4z5m6j1kqgmm27" 805 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 781 806 }, 782 807 { 783 808 "pname": "System.Runtime.CompilerServices.Unsafe", 784 809 "version": "4.6.0", 785 - "sha256": "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m" 786 - }, 787 - { 788 - "pname": "System.Runtime.CompilerServices.Unsafe", 789 - "version": "5.0.0", 790 - "sha256": "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x" 810 + "hash": "sha256-FTjQeMuvqnKxpoVsVh/OlQ21NMaZiFtOdv7VdZ+Iv3Y=" 791 811 }, 792 812 { 793 813 "pname": "System.Runtime.CompilerServices.Unsafe", 794 814 "version": "6.0.0", 795 - "sha256": "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc" 796 - }, 797 - { 798 - "pname": "System.Runtime.Extensions", 799 - "version": "4.1.0", 800 - "sha256": "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z" 815 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 801 816 }, 802 817 { 803 818 "pname": "System.Runtime.Extensions", 804 819 "version": "4.3.0", 805 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 806 - }, 807 - { 808 - "pname": "System.Runtime.Handles", 809 - "version": "4.0.1", 810 - "sha256": "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g" 820 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 811 821 }, 812 822 { 813 823 "pname": "System.Runtime.Handles", 814 824 "version": "4.3.0", 815 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 816 - }, 817 - { 818 - "pname": "System.Runtime.InteropServices", 819 - "version": "4.1.0", 820 - "sha256": "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1" 825 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 821 826 }, 822 827 { 823 828 "pname": "System.Runtime.InteropServices", 824 829 "version": "4.3.0", 825 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 830 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 826 831 }, 827 832 { 828 833 "pname": "System.Runtime.InteropServices.RuntimeInformation", 829 834 "version": "4.3.0", 830 - "sha256": "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii" 835 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 831 836 }, 832 837 { 833 838 "pname": "System.Runtime.Numerics", 834 839 "version": "4.3.0", 835 - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" 840 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 836 841 }, 837 842 { 838 843 "pname": "System.Runtime.Serialization.Primitives", 839 - "version": "4.1.1", 840 - "sha256": "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k" 844 + "version": "4.3.0", 845 + "hash": "sha256-zu5m1M9usend+i9sbuD6Xbizdo8Z6N5PEF9DAtEVewc=" 841 846 }, 842 847 { 843 - "pname": "System.Runtime.Serialization.Primitives", 848 + "pname": "System.Security.Claims", 844 849 "version": "4.3.0", 845 - "sha256": "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf" 850 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 846 851 }, 847 852 { 848 853 "pname": "System.Security.Cryptography.Algorithms", 849 854 "version": "4.3.0", 850 - "sha256": "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml" 855 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 851 856 }, 852 857 { 853 858 "pname": "System.Security.Cryptography.Cng", 854 859 "version": "4.3.0", 855 - "sha256": "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv" 860 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 856 861 }, 857 862 { 858 863 "pname": "System.Security.Cryptography.Csp", 859 864 "version": "4.3.0", 860 - "sha256": "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1" 865 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 861 866 }, 862 867 { 863 868 "pname": "System.Security.Cryptography.Encoding", 864 869 "version": "4.3.0", 865 - "sha256": "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32" 870 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 866 871 }, 867 872 { 868 873 "pname": "System.Security.Cryptography.OpenSsl", 869 874 "version": "4.3.0", 870 - "sha256": "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc" 875 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 871 876 }, 872 877 { 873 878 "pname": "System.Security.Cryptography.Primitives", 874 879 "version": "4.3.0", 875 - "sha256": "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby" 880 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 881 + }, 882 + { 883 + "pname": "System.Security.Cryptography.ProtectedData", 884 + "version": "4.4.0", 885 + "hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=" 876 886 }, 877 887 { 878 888 "pname": "System.Security.Cryptography.X509Certificates", 879 889 "version": "4.3.0", 880 - "sha256": "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h" 890 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 881 891 }, 882 892 { 883 - "pname": "System.Security.Principal.Windows", 884 - "version": "5.0.0", 885 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 893 + "pname": "System.Security.Principal", 894 + "version": "4.3.0", 895 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 886 896 }, 887 897 { 888 - "pname": "System.Text.Encoding", 889 - "version": "4.0.11", 890 - "sha256": "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw" 891 - }, 892 - { 893 - "pname": "System.Text.Encoding", 898 + "pname": "System.Security.Principal.Windows", 894 899 "version": "4.3.0", 895 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 900 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 896 901 }, 897 902 { 898 - "pname": "System.Text.Encoding.CodePages", 899 - "version": "6.0.0", 900 - "sha256": "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww" 903 + "pname": "System.Security.Principal.Windows", 904 + "version": "4.7.0", 905 + "hash": "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg=" 901 906 }, 902 907 { 903 - "pname": "System.Text.Encoding.Extensions", 904 - "version": "4.0.11", 905 - "sha256": "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs" 908 + "pname": "System.Text.Encoding", 909 + "version": "4.3.0", 910 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 906 911 }, 907 912 { 908 913 "pname": "System.Text.Encoding.Extensions", 909 914 "version": "4.3.0", 910 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 911 - }, 912 - { 913 - "pname": "System.Text.RegularExpressions", 914 - "version": "4.1.0", 915 - "sha256": "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7" 915 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 916 916 }, 917 917 { 918 918 "pname": "System.Text.RegularExpressions", 919 919 "version": "4.3.0", 920 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 921 - }, 922 - { 923 - "pname": "System.Threading", 924 - "version": "4.0.11", 925 - "sha256": "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls" 920 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 926 921 }, 927 922 { 928 923 "pname": "System.Threading", 929 924 "version": "4.3.0", 930 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 931 - }, 932 - { 933 - "pname": "System.Threading.Tasks", 934 - "version": "4.0.11", 935 - "sha256": "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5" 925 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 936 926 }, 937 927 { 938 928 "pname": "System.Threading.Tasks", 939 929 "version": "4.3.0", 940 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 941 - }, 942 - { 943 - "pname": "System.Threading.Tasks.Extensions", 944 - "version": "4.0.0", 945 - "sha256": "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr" 930 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 946 931 }, 947 932 { 948 933 "pname": "System.Threading.Tasks.Extensions", 949 934 "version": "4.3.0", 950 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 935 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 951 936 }, 952 937 { 953 - "pname": "System.Threading.Tasks.Extensions", 954 - "version": "4.5.4", 955 - "sha256": "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153" 938 + "pname": "System.Threading.ThreadPool", 939 + "version": "4.3.0", 940 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 956 941 }, 957 942 { 958 943 "pname": "System.Threading.Timer", 959 944 "version": "4.3.0", 960 - "sha256": "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56" 945 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 961 946 }, 962 947 { 963 948 "pname": "System.ValueTuple", 964 949 "version": "4.5.0", 965 - "sha256": "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy" 966 - }, 967 - { 968 - "pname": "System.Xml.ReaderWriter", 969 - "version": "4.0.11", 970 - "sha256": "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5" 950 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 971 951 }, 972 952 { 973 953 "pname": "System.Xml.ReaderWriter", 974 954 "version": "4.3.0", 975 - "sha256": "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1" 976 - }, 977 - { 978 - "pname": "System.Xml.XDocument", 979 - "version": "4.0.11", 980 - "sha256": "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18" 955 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 981 956 }, 982 957 { 983 958 "pname": "System.Xml.XDocument", 984 959 "version": "4.3.0", 985 - "sha256": "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd" 986 - }, 987 - { 988 - "pname": "System.Xml.XmlDocument", 989 - "version": "4.3.0", 990 - "sha256": "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi" 960 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 991 961 }, 992 962 { 993 963 "pname": "ThemeEditor.Controls.ColorPicker", 994 - "version": "0.10.12", 995 - "sha256": "17kh28fkywqmz5yams8wzr50ihkv52y24gk8bz9fxl6kfzmgk0ky" 964 + "version": "0.10.17", 965 + "hash": "sha256-SoamofgQCfZFGJjTyD7KL8a+cIFzTmaDCIbHlfbz/qw=" 996 966 }, 997 967 { 998 968 "pname": "Tmds.DBus", 999 - "version": "0.10.1", 1000 - "sha256": "1wafa009cjj1rziias2n00ap0g8kdg2iig5sjlrxj2kld24lgbli" 969 + "version": "0.9.0", 970 + "hash": "sha256-w332WVsJrdAOnlSUtgvatSTtnoC81C3LG6J2ip42fW8=" 1001 971 }, 1002 972 { 1003 973 "pname": "WebSocketSharp-netstandard", 1004 974 "version": "1.0.1", 1005 - "sha256": "0q89wiqpli72333zsa04d1vzq9xj0583hn5mih9sdd84myksz5b0" 975 + "hash": "sha256-YJWvp68EtaYTjLVYOFABsif8d2gEKP3HGOJEenHkCWE=" 1006 976 }, 1007 977 { 1008 978 "pname": "xunit", 1009 - "version": "2.4.1", 1010 - "sha256": "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20" 979 + "version": "2.5.1", 980 + "hash": "sha256-SxDG/dFHk+7F4x4PYXRyw8PwuqcmH7Mhz9PHA2sVuYg=" 1011 981 }, 1012 982 { 1013 983 "pname": "xunit.abstractions", 1014 984 "version": "2.0.3", 1015 - "sha256": "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh" 985 + "hash": "sha256-0D1y/C34iARI96gb3bAOG8tcGPMjx+fMabTPpydGlAM=" 1016 986 }, 1017 987 { 1018 988 "pname": "xunit.analyzers", 1019 - "version": "0.10.0", 1020 - "sha256": "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j" 989 + "version": "1.3.0", 990 + "hash": "sha256-+l50DUYCEdnrHg6cKUfsNx8m0BRwAVdqURCQb0aZLLQ=" 1021 991 }, 1022 992 { 1023 993 "pname": "xunit.assert", 1024 - "version": "2.4.1", 1025 - "sha256": "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6" 994 + "version": "2.5.1", 995 + "hash": "sha256-2U83B5QOaEgVUXBQ5/juqEqrKxeyo5LKTKQ/JCFUy/E=" 1026 996 }, 1027 997 { 1028 998 "pname": "xunit.core", 1029 - "version": "2.4.1", 1030 - "sha256": "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a" 999 + "version": "2.5.1", 1000 + "hash": "sha256-igzHINMd6V01nEg6Hc3YpXdL4MT0ZlCY1RwlxQEO5Xg=" 1031 1001 }, 1032 1002 { 1033 1003 "pname": "xunit.extensibility.core", 1034 - "version": "2.4.1", 1035 - "sha256": "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050" 1004 + "version": "2.5.1", 1005 + "hash": "sha256-1wAQJZljPyQhhvaKuE0XV6OyFGxxyFtTWMCQd57mctw=" 1036 1006 }, 1037 1007 { 1038 1008 "pname": "xunit.extensibility.execution", 1039 - "version": "2.4.1", 1040 - "sha256": "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia" 1009 + "version": "2.5.1", 1010 + "hash": "sha256-sgje8DfOxpdV4xXcGB5llrzr9rTlPPIQIr/PjP2A0p8=" 1041 1011 }, 1042 1012 { 1043 1013 "pname": "xunit.runner.console", 1044 - "version": "2.4.1", 1045 - "sha256": "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13" 1014 + "version": "2.5.1", 1015 + "hash": "sha256-CLf7tVyeslvtAqlFlp7Mr/lHq+C3p1duLzXGiHdZigM=" 1046 1016 }, 1047 1017 { 1048 1018 "pname": "xunit.runner.visualstudio", 1049 - "version": "2.4.3", 1050 - "sha256": "0j1d0rbcm7pp6dypi61sjxp8l22sv261252z55b243l39jgv2rp3" 1019 + "version": "2.5.1", 1020 + "hash": "sha256-HbQNZB/4Kjv7UxP5cWAteiNiRErsqnWhCemcBiQ95Hg=" 1051 1021 } 1052 1022 ]
+7 -15
pkgs/by-name/al/alttpr-opentracker/package.nix
··· 17 17 }: 18 18 buildDotnetModule rec { 19 19 pname = "opentracker"; 20 - version = "1.8.5"; 20 + version = "1.8.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "trippsc2"; 24 - repo = pname; 24 + repo = "opentracker"; 25 25 tag = version; 26 - hash = "sha512-nWkPgVYdnBJibyJRdLPe3O3RioDPbzumSritRejmr4CeiPb7aUTON7HjivcV/GKor1guEYu+TJ+QxYrqO/eppg=="; 26 + hash = "sha256-4EBn3BX5tX+yPUjoNFQSls9CwTCd6MpvcBoUKwRndRo="; 27 27 }; 28 28 29 - patches = [./remove-project.patch]; 30 - 31 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 29 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 32 30 33 31 nugetDeps = ./deps.json; 34 32 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 - ]; 33 + projectFile = "src/OpenTracker/OpenTracker.csproj"; 34 + executables = [ "OpenTracker" ]; 43 35 44 36 nativeBuildInputs = [ 45 37 autoPatchelfHook ··· 86 78 license = licenses.mit; 87 79 maintainers = [ ]; 88 80 mainProgram = "OpenTracker"; 89 - platforms = ["x86_64-linux"]; 81 + platforms = [ "x86_64-linux" ]; 90 82 }; 91 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 2 { 3 3 "pname": "AtkSharp", 4 4 "version": "3.24.24.34", 5 - "sha256": "1jn1vgi9xm0jp7769k6sbdi8d273kigjrsh93i6s4c03hqxv7cqs" 5 + "hash": "sha256-GrOzO4YDMKJNHAnqLF+c44iGYlvazGTOuRLUnuLbwco=" 6 6 }, 7 7 { 8 8 "pname": "CairoSharp", 9 9 "version": "3.24.24.34", 10 - "sha256": "0pydn1k0cam1gclg9sc1sbnmbyzh28qlc5qanyxcylwghink3kgz" 10 + "hash": "sha256-/80xbYSPU8+6twoXRjES8PtV7dKB6fQoe6EqBmawzV8=" 11 11 }, 12 12 { 13 13 "pname": "Eto.Forms", 14 14 "version": "2.7.1", 15 - "sha256": "1hzbdnmn5znycfi0mvqa5k5mz9gasy58qzwa7fjmlkwj8ab87l9r" 15 + "hash": "sha256-OdGDlkKST1qlO4p/jIrX6qVfyywK7wqiY97+Yqtt68M=" 16 16 }, 17 17 { 18 18 "pname": "Eto.Platform.Gtk", 19 19 "version": "2.7.1", 20 - "sha256": "09iz85s728jy5qg7y30qvqw5rpsr3yxffrchk1avryk87ky1ysys" 20 + "hash": "sha256-2msf/Dxo+rxVmJBl57ofWd9cON4YDH8eLl4icXRBPyY=" 21 21 }, 22 22 { 23 23 "pname": "GdkSharp", 24 24 "version": "3.24.24.34", 25 - "sha256": "0r0x0yib7chwsyrbpvicrfwldwqx5lyqq4p86zaxpmzd6zdaj0x5" 25 + "hash": "sha256-pQOp2jft19vVN+gSjD0tHfNGucss7ruy1xyys6IHHWQ=" 26 26 }, 27 27 { 28 28 "pname": "GioSharp", 29 29 "version": "3.24.24.34", 30 - "sha256": "02hxvgjd4w9jpzbkk7qf9q9bkvyp5hfzwxfqp10vg5lpl9yl3xpx" 30 + "hash": "sha256-/fZBfaKXlrdBuNh1/h0s1++5Ek4OnznXvzJx0uTbHQo=" 31 31 }, 32 32 { 33 33 "pname": "GLibSharp", 34 34 "version": "3.24.24.34", 35 - "sha256": "0kvp033fgdwc8p2abfp5z9pzq66cvwbnjfvr4v4bkpy5s5h181kq" 35 + "hash": "sha256-eAYUYNHF37nIJnk7aRffzBj8b/rluqXERYy358YAd08=" 36 36 }, 37 37 { 38 38 "pname": "GtkSharp", 39 39 "version": "3.24.24.34", 40 - "sha256": "0028hzmmqyfx87qqmaf9cgb5psn7gkbmqvixcid67x1d6mzxjicb" 40 + "hash": "sha256-i0XZfzUt9GNaZD1uXNd8x+pb1mPJqYrxQd15XOuHSAA=" 41 41 }, 42 42 { 43 43 "pname": "LibGit2Sharp", 44 44 "version": "0.27.0", 45 - "sha256": "0n8crafpp4jq74km45wlm3jm0h96ggvqxy26wrz55azgjpk6p1gz" 45 + "hash": "sha256-/4Vr5pXvq1J+5kb4jvd7JkFQ5aiUF1InOViSe53KDFk=" 46 46 }, 47 47 { 48 48 "pname": "LibGit2Sharp.NativeBinaries", 49 49 "version": "2.0.319", 50 - "sha256": "0xm6np8y182v5246imnkw1fj2sx8x2nl3568kkm3razcgb0y5xlf" 50 + "hash": "sha256-jvbiwXrsqzzqnMiUQa3oqGshXeDT1miIKFug4NG1pnY=" 51 51 }, 52 52 { 53 53 "pname": "log4net", 54 54 "version": "2.0.15", 55 - "sha256": "1iq1rd0z0m15ln247jjrimj3avq50vh6njvw4x158r5v6nz093nb" 55 + "hash": "sha256-y44EvjW7ZFRCJ3xLa+AGBW81ZI1ZykOEpSVU8EHLAcc=" 56 56 }, 57 57 { 58 58 "pname": "Microsoft.NETCore.Platforms", 59 - "version": "1.1.0", 60 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 59 + "version": "2.0.0", 60 + "hash": "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=" 61 61 }, 62 62 { 63 63 "pname": "Microsoft.NETCore.Platforms", 64 64 "version": "5.0.0", 65 - "sha256": "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc" 65 + "hash": "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=" 66 66 }, 67 67 { 68 68 "pname": "Microsoft.Win32.Registry", 69 69 "version": "5.0.0", 70 - "sha256": "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n" 70 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 71 71 }, 72 72 { 73 73 "pname": "Microsoft.Win32.SystemEvents", 74 74 "version": "6.0.0", 75 - "sha256": "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p" 76 - }, 77 - { 78 - "pname": "NETStandard.Library", 79 - "version": "2.0.3", 80 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 75 + "hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA=" 81 76 }, 82 77 { 83 78 "pname": "PangoSharp", 84 79 "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" 80 + "hash": "sha256-/KdH3SA/11bkwPe/AXRph4v4a2cjbUjDvo4+OhkJEOQ=" 96 81 }, 97 82 { 98 83 "pname": "System.ComponentModel.Annotations", 99 84 "version": "5.0.0", 100 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 85 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 101 86 }, 102 87 { 103 88 "pname": "System.Configuration.ConfigurationManager", 104 89 "version": "4.5.0", 105 - "sha256": "1frpy24mn6q7hgwayj98kkx89z861f5dmia4j6zc0a2ydgx8x02c" 90 + "hash": "sha256-TICO+mteKMC+kUTF2ooLBv2E+pwoSa/4gwcbW4nwN7s=" 106 91 }, 107 92 { 108 93 "pname": "System.Configuration.ConfigurationManager", 109 94 "version": "6.0.0", 110 - "sha256": "0sqapr697jbb4ljkq46msg0xx1qpmc31ivva6llyz2wzq3mpmxbw" 95 + "hash": "sha256-fPV668Cfi+8pNWrvGAarF4fewdPVEDwlJWvJk0y+Cms=" 111 96 }, 112 97 { 113 98 "pname": "System.Drawing.Common", 114 99 "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" 100 + "hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo=" 141 101 }, 142 102 { 143 103 "pname": "System.Security.AccessControl", 144 104 "version": "4.5.0", 145 - "sha256": "1wvwanz33fzzbnd2jalar0p0z3x0ba53vzx1kazlskp7pwyhlnq0" 105 + "hash": "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM=" 146 106 }, 147 107 { 148 108 "pname": "System.Security.AccessControl", 149 109 "version": "5.0.0", 150 - "sha256": "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r" 110 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 151 111 }, 152 112 { 153 113 "pname": "System.Security.AccessControl", 154 114 "version": "6.0.0", 155 - "sha256": "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58" 115 + "hash": "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg=" 156 116 }, 157 117 { 158 118 "pname": "System.Security.Cryptography.ProtectedData", 159 119 "version": "4.5.0", 160 - "sha256": "11qlc8q6b7xlspayv07718ibzvlj6ddqqxkvcbxv5b24d5kzbrb7" 120 + "hash": "sha256-Z+X1Z2lErLL7Ynt2jFszku6/IgrngO3V1bSfZTBiFIc=" 161 121 }, 162 122 { 163 123 "pname": "System.Security.Cryptography.ProtectedData", 164 124 "version": "6.0.0", 165 - "sha256": "05kd3a8w7658hjxq9vvszxip30a479fjmfq4bq1r95nrsvs4hbss" 125 + "hash": "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY=" 166 126 }, 167 127 { 168 128 "pname": "System.Security.Permissions", 169 129 "version": "4.5.0", 170 - "sha256": "192ww5rm3c9mirxgl1nzyrwd18am3izqls0hzm0fvcdjl5grvbhm" 130 + "hash": "sha256-Fa6dX6Gyse1A/RBoin8cVaHQePbfBvp6jjWxUXPhXKQ=" 171 131 }, 172 132 { 173 133 "pname": "System.Security.Permissions", 174 134 "version": "6.0.0", 175 - "sha256": "0jsl4xdrkqi11iwmisi1r2f2qn5pbvl79mzq877gndw6ans2zhzw" 135 + "hash": "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs=" 176 136 }, 177 137 { 178 138 "pname": "System.Security.Principal.Windows", 179 139 "version": "4.5.0", 180 - "sha256": "0rmj89wsl5yzwh0kqjgx45vzf694v9p92r4x4q6yxldk1cv1hi86" 140 + "hash": "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY=" 181 141 }, 182 142 { 183 143 "pname": "System.Security.Principal.Windows", 184 144 "version": "5.0.0", 185 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 145 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 186 146 }, 187 147 { 188 148 "pname": "System.Windows.Extensions", 189 149 "version": "6.0.0", 190 - "sha256": "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip" 150 + "hash": "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM=" 191 151 } 192 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 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, 22 23 }: 23 24 let 24 25 am2r-run = buildFHSEnv { ··· 26 27 27 28 multiArch = true; 28 29 29 - multiPkgs = pkgs: with pkgs; [ 30 + multiPkgs = 31 + pkgs: with pkgs; [ 30 32 (lib.getLib stdenv.cc.cc) 31 33 xorg.libX11 32 34 xorg.libXext ··· 55 57 hash = "sha256-/nHqo8jh3sOUngbpqdfiQjUWO/8Uzpc5jtW7Ep4q6Wg="; 56 58 }; 57 59 58 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 60 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 59 61 projectFile = "AM2RLauncher/AM2RLauncher.Gtk/AM2RLauncher.Gtk.csproj"; 60 62 61 63 nugetDeps = ./deps.json; ··· 74 76 75 77 nativeBuildInputs = [ wrapGAppsHook3 ]; 76 78 77 - buildInputs = [ gtk3 gsettings-desktop-schemas glib-networking ]; 79 + buildInputs = [ 80 + gtk3 81 + gsettings-desktop-schemas 82 + glib-networking 83 + ]; 78 84 79 - patches = [ ./am2r-run-binary.patch ]; 85 + patches = [ 86 + ./am2r-run-binary.patch 87 + ./dotnet-8-upgrade.patch 88 + ]; 80 89 81 - dotnetFlags = [ ''-p:DefineConstants="NOAPPIMAGE;NOAUTOUPDATE;PATCHOPENSSL"'' ]; 90 + dotnetFlags = [ 91 + ''-p:DefineConstants="NOAPPIMAGE;NOAUTOUPDATE;PATCHOPENSSL"'' 92 + ]; 82 93 83 - postFixup = '' 84 - wrapProgram $out/bin/AM2RLauncher.Gtk \ 85 - --prefix PATH : ${lib.makeBinPath [ am2r-run xdelta file openjdk patchelf ]} \ 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 + ]; 86 108 109 + postFixup = '' 87 110 mkdir -p $out/share/icons 88 111 install -Dm644 $src/AM2RLauncher/distribution/linux/AM2RLauncher.png $out/share/icons/AM2RLauncher.png 89 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 81 meta = { 82 82 description = "Companion app for the BitBox02 hardware wallet"; 83 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 + }"; 84 88 license = lib.licenses.asl20; 89 + maintainers = [ lib.maintainers.tensor5 ]; 85 90 mainProgram = "bitbox"; 86 - maintainers = [ lib.maintainers.tensor5 ]; 91 + sourceProvenance = [ lib.sourceTypes.fromSource ]; 87 92 platforms = [ "x86_64-linux" ]; 88 93 }; 89 94 }
+3 -3
pkgs/by-name/ca/cargo-llvm-lines/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-llvm-lines"; 9 - version = "0.4.41"; 9 + version = "0.4.42"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dtolnay"; 13 13 repo = pname; 14 14 rev = version; 15 - hash = "sha256-ewxdjvo9WFVX4484uuEkerzcJ4fOy2Sm90tiPGNbrV0="; 15 + hash = "sha256-qKdxnISussiyp1ylahS7qOdMfOGwJnlbWrgEHf/L2y0="; 16 16 }; 17 17 18 - cargoHash = "sha256-9jG5VgIlHYv1IFSjPy34dNk8RHjhgXi6daI+R0jgxMc="; 18 + cargoHash = "sha256-IDFCzTAlC/ZYGwUSmmxyRmZy5belxvyfeWpTCPzJQ6o="; 19 19 20 20 meta = with lib; { 21 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 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-tally"; 11 - version = "1.0.56"; 11 + version = "1.0.57"; 12 12 13 13 src = fetchCrate { 14 14 inherit pname version; 15 - hash = "sha256-IB1OoS9pdFHFewLfeu1cVCffLGtPvCJlVkIBZxtBkm4="; 15 + hash = "sha256-0f+23kQZzmUeAjettZ3iRTATiv73sGpI13TzZFTU150="; 16 16 }; 17 17 18 - cargoHash = "sha256-uPlilomHib10/v2HKBjU/ln0B4QkKpFJPpKf37RO7Oo="; 18 + cargoHash = "sha256-o4S13uvKYLUUmx6tHQpCm7U9AOtmg8P60NxdNsXy9Fc="; 19 19 20 20 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin ( 21 21 with darwin.apple_sdk_11_0.frameworks;
+2 -2
pkgs/by-name/ci/civo/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "civo"; 10 - version = "1.1.92"; 10 + version = "1.1.93"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "civo"; 14 14 repo = "cli"; 15 15 rev = "v${version}"; 16 - hash = "sha256-nsH/6OVvCOU4f9UZNFOm9AtyN9L4tXB285580g3SsxE="; 16 + hash = "sha256-FX2hnqYqvPoD6Fn1363XrK4n0tMd9xkWlIcyIhDJDW4="; 17 17 }; 18 18 19 19 vendorHash = "sha256-G3ijLi3ZbURVHkjUwylFWwxRyxroppVUFJveKw5qLq8=";
+10 -3
pkgs/by-name/da/dafny/package.nix
··· 65 65 # frameworks, you must specify the framework for the published 66 66 # application." 67 67 substituteInPlace Source/DafnyRuntime/DafnyRuntime.csproj \ 68 - --replace-warn TargetFrameworks TargetFramework \ 69 - --replace-warn "netstandard2.0;net452" net6.0 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 70 77 ''; 71 78 72 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 79 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 73 80 nativeBuildInputs = [ jdk11 ]; 74 81 nugetDeps = ./deps.json; 75 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 15 16 16 let 17 17 version = { 18 - seriousproton = "2024.08.09"; 19 - emptyepsilon = "2024.08.09"; 20 - basis-universal = "v1_15_update2"; 18 + seriousproton = "2024.12.08"; 19 + emptyepsilon = "2024.12.08"; 20 + basis-universal = "1.15_final"; 21 21 }; 22 22 23 23 basis-universal = fetchFromGitHub { 24 24 owner = "BinomialLLC"; 25 25 repo = "basis_universal"; 26 - rev = version.basis-universal; 27 - hash = "sha256-2snzq/SnhWHIgSbUUgh24B6tka7EfkGO+nwKEObRkU4="; 26 + tag = version.basis-universal; 27 + hash = "sha256-pKvfVvdbPIdzdSOklicThS7xwt4i3/21bE6wg9f8kHY="; 28 28 }; 29 29 30 30 serious-proton = stdenv.mkDerivation { ··· 34 34 src = fetchFromGitHub { 35 35 owner = "daid"; 36 36 repo = "SeriousProton"; 37 - rev = "EE-${version.seriousproton}"; 38 - hash = "sha256-B7BUe5rtN/eABJwkuSyn+h1lIHuV/tZUNcGXTyaWIr4="; 37 + tag = "EE-${version.seriousproton}"; 38 + hash = "sha256-k1YCB7EJIL+kdlHEU4cJjmLZZAZyxIPU0XlSn2t4C90="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ cmake ]; ··· 69 69 src = fetchFromGitHub { 70 70 owner = "daid"; 71 71 repo = "EmptyEpsilon"; 72 - rev = "EE-${version.emptyepsilon}"; 73 - hash = "sha256-DxaasUyJa8n0ha8RqAfEnqCVELs5Or0zvIOgcK75TnU="; 72 + tag = "EE-${version.emptyepsilon}"; 73 + hash = "sha256-JsHFwbt4VGsgaZz9uxEmwzZGfkYTNsIZTKkpvCCmI48="; 74 74 }; 75 75 76 76 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/er/erofs-utils/package.nix
··· 17 17 18 18 stdenv.mkDerivation (finalAttrs: { 19 19 pname = "erofs-utils"; 20 - version = "1.8.3"; 20 + version = "1.8.4"; 21 21 outputs = [ 22 22 "out" 23 23 "man" ··· 25 25 26 26 src = fetchurl { 27 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="; 28 + hash = "sha256-eRWHqgdLufn6IYx2LMH2CwFeL1G8ss6R9oLwQ4VqtJQ="; 29 29 }; 30 30 31 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 5 fetchFromGitHub, 6 6 python3, 7 7 xcbuild, 8 + fetchpatch, 8 9 }: 9 - 10 10 let 11 11 version = "13.29.1"; 12 12 src = fetchFromGitHub { ··· 20 20 pname = "firebase-tools"; 21 21 inherit version src; 22 22 23 - npmDepsHash = "sha256-3+XeXK3VGIs4Foi9iW9Kho/Y0JsTQZ7p+582MPgdH1A="; 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 + ]; 24 35 25 36 postPatch = '' 26 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 2 { 3 3 "pname": "Antlr4.Runtime.Standard", 4 4 "version": "4.7.2", 5 - "sha256": "1pmrpsgqjfj0nzr1zqzk1m2fm0ynd4nklwq3dhvww08yjg5s0586" 5 + "hash": "sha256-BhWgy5MeAc43bANzOi1p1oPqRA3z4x/yt0A6iZ++ud4=" 6 6 }, 7 7 { 8 8 "pname": "Microsoft.NETCore.Platforms", 9 9 "version": "1.1.0", 10 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 10 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 11 11 }, 12 12 { 13 13 "pname": "Microsoft.NETCore.Targets", 14 14 "version": "1.1.0", 15 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 15 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 16 16 }, 17 17 { 18 18 "pname": "Microsoft.Win32.Primitives", 19 19 "version": "4.3.0", 20 - "sha256": "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq" 20 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 21 21 }, 22 22 { 23 23 "pname": "Microsoft.Z3.x64", 24 24 "version": "4.8.7", 25 - "sha256": "1wxlw29xm5x8vwji2s7gwk39wb88dkbpg76l9s9gq0hqpghwlmdz" 25 + "hash": "sha256-v1XK4bsYAvySTtScd9dsCC2exuTvaBEl36iX2pPgtPM=" 26 26 }, 27 27 { 28 28 "pname": "NETStandard.Library", 29 29 "version": "1.6.1", 30 - "sha256": "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8" 30 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 31 31 }, 32 32 { 33 33 "pname": "runtime.any.System.Collections", 34 34 "version": "4.3.0", 35 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 35 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 36 36 }, 37 37 { 38 38 "pname": "runtime.any.System.Diagnostics.Tools", 39 39 "version": "4.3.0", 40 - "sha256": "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk" 40 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 41 41 }, 42 42 { 43 43 "pname": "runtime.any.System.Diagnostics.Tracing", 44 44 "version": "4.3.0", 45 - "sha256": "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn" 45 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 46 46 }, 47 47 { 48 48 "pname": "runtime.any.System.Globalization", 49 49 "version": "4.3.0", 50 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 50 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 51 51 }, 52 52 { 53 53 "pname": "runtime.any.System.Globalization.Calendars", 54 54 "version": "4.3.0", 55 - "sha256": "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201" 55 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 56 56 }, 57 57 { 58 58 "pname": "runtime.any.System.IO", 59 59 "version": "4.3.0", 60 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 60 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 61 61 }, 62 62 { 63 63 "pname": "runtime.any.System.Reflection", 64 64 "version": "4.3.0", 65 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 65 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 66 66 }, 67 67 { 68 68 "pname": "runtime.any.System.Reflection.Extensions", 69 69 "version": "4.3.0", 70 - "sha256": "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33" 70 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 71 71 }, 72 72 { 73 73 "pname": "runtime.any.System.Reflection.Primitives", 74 74 "version": "4.3.0", 75 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 75 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 76 76 }, 77 77 { 78 78 "pname": "runtime.any.System.Resources.ResourceManager", 79 79 "version": "4.3.0", 80 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 80 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 81 81 }, 82 82 { 83 83 "pname": "runtime.any.System.Runtime", 84 84 "version": "4.3.0", 85 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 85 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 86 86 }, 87 87 { 88 88 "pname": "runtime.any.System.Runtime.Handles", 89 89 "version": "4.3.0", 90 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 90 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 91 91 }, 92 92 { 93 93 "pname": "runtime.any.System.Runtime.InteropServices", 94 94 "version": "4.3.0", 95 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 95 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 96 96 }, 97 97 { 98 98 "pname": "runtime.any.System.Text.Encoding", 99 99 "version": "4.3.0", 100 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 100 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 101 101 }, 102 102 { 103 103 "pname": "runtime.any.System.Text.Encoding.Extensions", 104 104 "version": "4.3.0", 105 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 105 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 106 106 }, 107 107 { 108 108 "pname": "runtime.any.System.Threading.Tasks", 109 109 "version": "4.3.0", 110 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 110 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 111 111 }, 112 112 { 113 113 "pname": "runtime.any.System.Threading.Timer", 114 114 "version": "4.3.0", 115 - "sha256": "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086" 115 + "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" 116 116 }, 117 117 { 118 118 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 119 119 "version": "4.3.0", 120 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 120 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 121 121 }, 122 122 { 123 123 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 124 124 "version": "4.3.0", 125 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 125 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 126 126 }, 127 127 { 128 128 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 129 129 "version": "4.3.0", 130 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 130 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 131 131 }, 132 132 { 133 133 "pname": "runtime.native.System", 134 134 "version": "4.3.0", 135 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 135 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 136 136 }, 137 137 { 138 138 "pname": "runtime.native.System.IO.Compression", 139 139 "version": "4.3.0", 140 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 140 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 141 141 }, 142 142 { 143 143 "pname": "runtime.native.System.Net.Http", 144 144 "version": "4.3.0", 145 - "sha256": "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk" 145 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 146 146 }, 147 147 { 148 148 "pname": "runtime.native.System.Security.Cryptography.Apple", 149 149 "version": "4.3.0", 150 - "sha256": "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q" 150 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 151 151 }, 152 152 { 153 153 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 154 154 "version": "4.3.0", 155 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 155 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 156 156 }, 157 157 { 158 158 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 159 159 "version": "4.3.0", 160 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 160 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 161 161 }, 162 162 { 163 163 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 164 164 "version": "4.3.0", 165 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 165 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 166 166 }, 167 167 { 168 168 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 169 169 "version": "4.3.0", 170 - "sha256": "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi" 170 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 171 171 }, 172 172 { 173 173 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 174 174 "version": "4.3.0", 175 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 175 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 176 176 }, 177 177 { 178 178 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 179 179 "version": "4.3.0", 180 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 180 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 181 181 }, 182 182 { 183 183 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 184 184 "version": "4.3.0", 185 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 185 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 186 186 }, 187 187 { 188 188 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 189 189 "version": "4.3.0", 190 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 190 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 191 191 }, 192 192 { 193 193 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 194 194 "version": "4.3.0", 195 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 195 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 196 196 }, 197 197 { 198 198 "pname": "runtime.unix.Microsoft.Win32.Primitives", 199 199 "version": "4.3.0", 200 - "sha256": "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id" 200 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 201 201 }, 202 202 { 203 203 "pname": "runtime.unix.System.Console", 204 204 "version": "4.3.0", 205 - "sha256": "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80" 205 + "hash": "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190=" 206 206 }, 207 207 { 208 208 "pname": "runtime.unix.System.Diagnostics.Debug", 209 209 "version": "4.3.0", 210 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 210 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 211 211 }, 212 212 { 213 213 "pname": "runtime.unix.System.IO.FileSystem", 214 214 "version": "4.3.0", 215 - "sha256": "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix" 215 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 216 216 }, 217 217 { 218 218 "pname": "runtime.unix.System.Net.Primitives", 219 219 "version": "4.3.0", 220 - "sha256": "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4" 220 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 221 221 }, 222 222 { 223 223 "pname": "runtime.unix.System.Net.Sockets", 224 224 "version": "4.3.0", 225 - "sha256": "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12" 225 + "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" 226 226 }, 227 227 { 228 228 "pname": "runtime.unix.System.Private.Uri", 229 229 "version": "4.3.0", 230 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 230 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 231 231 }, 232 232 { 233 233 "pname": "runtime.unix.System.Runtime.Extensions", 234 234 "version": "4.3.0", 235 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 235 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 236 236 }, 237 237 { 238 238 "pname": "System.AppContext", 239 239 "version": "4.3.0", 240 - "sha256": "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya" 240 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 241 241 }, 242 242 { 243 243 "pname": "System.Buffers", 244 244 "version": "4.3.0", 245 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 245 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 246 246 }, 247 247 { 248 248 "pname": "System.Collections", 249 249 "version": "4.3.0", 250 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 250 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 251 251 }, 252 252 { 253 253 "pname": "System.Collections.Concurrent", 254 254 "version": "4.3.0", 255 - "sha256": "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8" 255 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 256 256 }, 257 257 { 258 258 "pname": "System.Console", 259 259 "version": "4.3.0", 260 - "sha256": "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay" 260 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 261 261 }, 262 262 { 263 263 "pname": "System.Diagnostics.Debug", 264 264 "version": "4.3.0", 265 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 265 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 266 266 }, 267 267 { 268 268 "pname": "System.Diagnostics.DiagnosticSource", 269 269 "version": "4.3.0", 270 - "sha256": "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq" 270 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 271 271 }, 272 272 { 273 273 "pname": "System.Diagnostics.Tools", 274 274 "version": "4.3.0", 275 - "sha256": "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1" 275 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 276 276 }, 277 277 { 278 278 "pname": "System.Diagnostics.Tracing", 279 279 "version": "4.3.0", 280 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 280 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 281 281 }, 282 282 { 283 283 "pname": "System.Globalization", 284 284 "version": "4.3.0", 285 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 285 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 286 286 }, 287 287 { 288 288 "pname": "System.Globalization.Calendars", 289 289 "version": "4.3.0", 290 - "sha256": "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq" 290 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 291 291 }, 292 292 { 293 293 "pname": "System.Globalization.Extensions", 294 294 "version": "4.3.0", 295 - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" 295 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 296 296 }, 297 297 { 298 298 "pname": "System.IO", 299 299 "version": "4.3.0", 300 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 300 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 301 301 }, 302 302 { 303 303 "pname": "System.IO.Compression", 304 304 "version": "4.3.0", 305 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 305 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 306 306 }, 307 307 { 308 308 "pname": "System.IO.Compression.ZipFile", 309 309 "version": "4.3.0", 310 - "sha256": "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar" 310 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 311 311 }, 312 312 { 313 313 "pname": "System.IO.FileSystem", 314 314 "version": "4.3.0", 315 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 315 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 316 316 }, 317 317 { 318 318 "pname": "System.IO.FileSystem.Primitives", 319 319 "version": "4.3.0", 320 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 320 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 321 321 }, 322 322 { 323 323 "pname": "System.Linq", 324 324 "version": "4.3.0", 325 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 325 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 326 326 }, 327 327 { 328 328 "pname": "System.Linq.Expressions", 329 329 "version": "4.3.0", 330 - "sha256": "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv" 330 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 331 331 }, 332 332 { 333 333 "pname": "System.Net.Http", 334 334 "version": "4.3.0", 335 - "sha256": "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j" 335 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 336 336 }, 337 337 { 338 338 "pname": "System.Net.NameResolution", 339 339 "version": "4.3.0", 340 - "sha256": "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq" 340 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 341 341 }, 342 342 { 343 343 "pname": "System.Net.Primitives", 344 344 "version": "4.3.0", 345 - "sha256": "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii" 345 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 346 346 }, 347 347 { 348 348 "pname": "System.Net.Sockets", 349 349 "version": "4.3.0", 350 - "sha256": "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla" 350 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 351 351 }, 352 352 { 353 353 "pname": "System.ObjectModel", 354 354 "version": "4.3.0", 355 - "sha256": "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2" 355 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 356 356 }, 357 357 { 358 358 "pname": "System.Private.Uri", 359 359 "version": "4.3.0", 360 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 360 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 361 361 }, 362 362 { 363 363 "pname": "System.Reflection", 364 364 "version": "4.3.0", 365 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 365 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 366 366 }, 367 367 { 368 368 "pname": "System.Reflection.Emit", 369 369 "version": "4.3.0", 370 - "sha256": "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74" 370 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 371 371 }, 372 372 { 373 373 "pname": "System.Reflection.Emit.ILGeneration", 374 374 "version": "4.3.0", 375 - "sha256": "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q" 375 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 376 376 }, 377 377 { 378 378 "pname": "System.Reflection.Emit.Lightweight", 379 379 "version": "4.3.0", 380 - "sha256": "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c" 380 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 381 381 }, 382 382 { 383 383 "pname": "System.Reflection.Extensions", 384 384 "version": "4.3.0", 385 - "sha256": "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq" 385 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 386 386 }, 387 387 { 388 388 "pname": "System.Reflection.Primitives", 389 389 "version": "4.3.0", 390 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 390 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 391 391 }, 392 392 { 393 393 "pname": "System.Reflection.TypeExtensions", 394 394 "version": "4.3.0", 395 - "sha256": "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1" 395 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 396 396 }, 397 397 { 398 398 "pname": "System.Resources.ResourceManager", 399 399 "version": "4.3.0", 400 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 400 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 401 401 }, 402 402 { 403 403 "pname": "System.Runtime", 404 404 "version": "4.3.0", 405 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 405 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 406 406 }, 407 407 { 408 408 "pname": "System.Runtime.Extensions", 409 409 "version": "4.3.0", 410 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 410 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 411 411 }, 412 412 { 413 413 "pname": "System.Runtime.Handles", 414 414 "version": "4.3.0", 415 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 415 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 416 416 }, 417 417 { 418 418 "pname": "System.Runtime.InteropServices", 419 419 "version": "4.3.0", 420 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 420 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 421 421 }, 422 422 { 423 423 "pname": "System.Runtime.InteropServices.RuntimeInformation", 424 424 "version": "4.3.0", 425 - "sha256": "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii" 425 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 426 426 }, 427 427 { 428 428 "pname": "System.Runtime.Numerics", 429 429 "version": "4.3.0", 430 - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" 430 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 431 431 }, 432 432 { 433 433 "pname": "System.Security.Claims", 434 434 "version": "4.3.0", 435 - "sha256": "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn" 435 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 436 436 }, 437 437 { 438 438 "pname": "System.Security.Cryptography.Algorithms", 439 439 "version": "4.3.0", 440 - "sha256": "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml" 440 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 441 441 }, 442 442 { 443 443 "pname": "System.Security.Cryptography.Cng", 444 444 "version": "4.3.0", 445 - "sha256": "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv" 445 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 446 446 }, 447 447 { 448 448 "pname": "System.Security.Cryptography.Csp", 449 449 "version": "4.3.0", 450 - "sha256": "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1" 450 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 451 451 }, 452 452 { 453 453 "pname": "System.Security.Cryptography.Encoding", 454 454 "version": "4.3.0", 455 - "sha256": "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32" 455 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 456 456 }, 457 457 { 458 458 "pname": "System.Security.Cryptography.OpenSsl", 459 459 "version": "4.3.0", 460 - "sha256": "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc" 460 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 461 461 }, 462 462 { 463 463 "pname": "System.Security.Cryptography.Primitives", 464 464 "version": "4.3.0", 465 - "sha256": "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby" 465 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 466 466 }, 467 467 { 468 468 "pname": "System.Security.Cryptography.X509Certificates", 469 469 "version": "4.3.0", 470 - "sha256": "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h" 470 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 471 471 }, 472 472 { 473 473 "pname": "System.Security.Principal", 474 474 "version": "4.3.0", 475 - "sha256": "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf" 475 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 476 476 }, 477 477 { 478 478 "pname": "System.Security.Principal.Windows", 479 479 "version": "4.3.0", 480 - "sha256": "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr" 480 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 481 481 }, 482 482 { 483 483 "pname": "System.Text.Encoding", 484 484 "version": "4.3.0", 485 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 485 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 486 486 }, 487 487 { 488 488 "pname": "System.Text.Encoding.Extensions", 489 489 "version": "4.3.0", 490 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 490 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 491 491 }, 492 492 { 493 493 "pname": "System.Text.RegularExpressions", 494 494 "version": "4.3.0", 495 - "sha256": "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l" 495 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 496 496 }, 497 497 { 498 498 "pname": "System.Threading", 499 499 "version": "4.3.0", 500 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 500 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 501 501 }, 502 502 { 503 503 "pname": "System.Threading.Tasks", 504 504 "version": "4.3.0", 505 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 505 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 506 506 }, 507 507 { 508 508 "pname": "System.Threading.Tasks.Extensions", 509 509 "version": "4.3.0", 510 - "sha256": "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z" 510 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 511 511 }, 512 512 { 513 513 "pname": "System.Threading.ThreadPool", 514 514 "version": "4.3.0", 515 - "sha256": "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1" 515 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 516 516 }, 517 517 { 518 518 "pname": "System.Threading.Timer", 519 519 "version": "4.3.0", 520 - "sha256": "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56" 520 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 521 521 }, 522 522 { 523 523 "pname": "System.Xml.ReaderWriter", 524 524 "version": "4.3.0", 525 - "sha256": "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1" 525 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 526 526 }, 527 527 { 528 528 "pname": "System.Xml.XDocument", 529 529 "version": "4.3.0", 530 - "sha256": "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd" 530 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 531 531 } 532 532 ]
+24 -13
pkgs/by-name/fo/formula/package.nix
··· 1 - { lib, stdenv, fetchFromGitHub, buildDotnetModule, dotnetCorePackages, unstableGitUpdater }: 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + buildDotnetModule, 6 + dotnetCorePackages, 7 + unstableGitUpdater, 8 + }: 2 9 3 - buildDotnetModule rec { 10 + buildDotnetModule (finalAttrs: { 4 11 pname = "formula-dotnet"; 5 12 version = "2.0"; 6 13 ··· 8 15 owner = "VUISIS"; 9 16 repo = "formula-dotnet"; 10 17 rev = "8ee2e6abfd4ce038e1d9cb9c8602dec1ed6c0163"; 11 - sha256 = "sha256-2ulv//YV3OqrfFltgUCeDe4rOPC0qqJ+80/D2lIoih8="; 18 + hash = "sha256-2ulv//YV3OqrfFltgUCeDe4rOPC0qqJ+80/D2lIoih8="; 12 19 }; 13 20 14 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 21 + patches = [ ./dotnet-8-upgrade.patch ]; 22 + 23 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 15 24 nugetDeps = ./nuget.json; 16 25 projectFile = "Src/CommandLine/CommandLine.csproj"; 17 26 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 - ''; 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 + ''; 25 36 26 - passthru.updateScript = unstableGitUpdater { url = meta.homepage; }; 37 + passthru.updateScript = unstableGitUpdater { url = finalAttrs.meta.homepage; }; 27 38 28 39 meta = with lib; { 29 40 description = "Formal Specifications for Verification and Synthesis"; ··· 33 44 platforms = platforms.unix; 34 45 mainProgram = "formula"; 35 46 }; 36 - } 47 + })
+2 -2
pkgs/by-name/go/goread/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "goread"; 9 - version = "1.7.1"; 9 + version = "1.7.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "TypicalAM"; 13 13 repo = "goread"; 14 14 rev = "v${version}"; 15 - hash = "sha256-tWQVqHtuTCHrsZu3CfTWUQzvUYbQrrdJoWHp43dfPEE="; 15 + hash = "sha256-8QjroS0aKALcrDJkpihD70iJJBdiVP4Q2j2n3BsY71w="; 16 16 }; 17 17 18 18 vendorHash = "sha256-S/0uuy/G7ZT239OgKaOT1dmY+u5/lnZKL4GtbEi2zCI=";
+3 -3
pkgs/by-name/go/goreleaser/package.nix
··· 10 10 }: 11 11 buildGoModule rec { 12 12 pname = "goreleaser"; 13 - version = "2.5.0"; 13 + version = "2.5.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "goreleaser"; 17 17 repo = "goreleaser"; 18 18 rev = "v${version}"; 19 - hash = "sha256-DWxYcviI/J9SlHe81UU8yw19pz671C+BsUnrId4JbDE="; 19 + hash = "sha256-W3f/1nn2gZhNloZNEg4ucTKt7B0K6NIYcBsPJyEhaKc="; 20 20 }; 21 21 22 - vendorHash = "sha256-Dbd7zKmzaMixD7AsWjsdiSXUebyjFvPfmwMjozMnaUQ="; 22 + vendorHash = "sha256-lEtuEtz0FMTiUYHiOhPlH78IXHjXCj0Y9Uf2lLgJw/o="; 23 23 24 24 ldflags = [ 25 25 "-s"
+35 -10
pkgs/by-name/hm/hmmer/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + easel, 6 + perl, 7 + python3, 8 + versionCheckHook, 5 9 }: 6 10 7 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 8 12 version = "3.4"; 9 13 pname = "hmmer"; 10 14 11 15 src = fetchurl { 12 - url = "http://eddylab.org/software/hmmer/${pname}-${version}.tar.gz"; 13 - sha256 = "sha256-ynDZT9DPJxvXBjQjqrsRbULeUzEXNDqbJ6ZcF/8G+/M="; 16 + url = "http://eddylab.org/software/hmmer/hmmer-${finalAttrs.version}.tar.gz"; 17 + hash = "sha256-ynDZT9DPJxvXBjQjqrsRbULeUzEXNDqbJ6ZcF/8G+/M="; 14 18 }; 15 19 16 - meta = with lib; { 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 = { 17 43 description = "Biosequence analysis using profile hidden Markov models"; 18 44 longDescription = '' 19 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). ··· 22 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. 23 49 ''; 24 50 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; 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; 30 55 }; 31 - } 56 + })
+3 -3
pkgs/by-name/ho/home-manager/package.nix
··· 19 19 20 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 21 pname = "home-manager"; 22 - version = "0-unstable-2024-12-23"; 22 + version = "0-unstable-2025-01-02"; 23 23 24 24 src = fetchFromGitHub { 25 25 name = "home-manager-source"; 26 26 owner = "nix-community"; 27 27 repo = "home-manager"; 28 - rev = "f1b1786ea77739dcd181b920d430e30fb1608b8a"; 29 - hash = "sha256-f9UyHMTb+BwF6RDZ8eO9HOkSlKeeSPBlcYhMmV1UNIk="; 28 + rev = "5f6aa268e419d053c3d5025da740e390b12ac936"; 29 + hash = "sha256-C73gLFnEh8ZI0uDijUgCDWCd21T6I6tsaWgIBHcfAXg="; 30 30 }; 31 31 32 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 1 + { 2 + lib, 3 + stdenv, 4 + buildDotnetModule, 5 + dotnetCorePackages, 6 + fetchFromGitHub, 6 7 }: 7 8 8 9 buildDotnetModule rec { ··· 16 17 hash = "sha512-aUjjT5Qf64wrKRn1vkwJadMOBWMkvsXUjtZ7S3/ZWAh1CCDkQNO84mSbtbVc9ny0fKeJEqaDX2tJNwq7pYqAbA=="; 17 18 }; 18 19 20 + patches = [ ./dotnet-8-upgrade.patch ]; 21 + 19 22 buildInputs = [ (lib.getLib stdenv.cc.cc) ]; 20 23 21 24 projectFile = "inklecate/inklecate.csproj"; 22 25 nugetDeps = ./deps.json; 23 26 executables = [ "inklecate" ]; 24 27 25 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 26 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 28 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 27 29 28 30 meta = with lib; { 29 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 505 "hash": "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U=" 506 506 }, 507 507 { 508 - "pname": "System.Runtime.CompilerServices.Unsafe", 509 - "version": "6.0.0", 510 - "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 511 - }, 512 - { 513 508 "pname": "System.Runtime.Extensions", 514 509 "version": "4.3.0", 515 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 17 hash = "sha256-vlSiM6kskV4wfBZF7Rv5ICyqKG0Zhz/iU8kflYOaf0U="; 18 18 }; 19 19 20 - patches = [ ./targetframework.patch ]; 20 + patches = [ ./dotnet-8-upgrade.patch ]; 21 21 22 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 22 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 23 23 nugetDeps = ./deps.json; 24 24 executables = [ "Knossos.NET" ]; 25 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 23 24 24 python3.pkgs.buildPythonApplication rec { 25 25 pname = "komikku"; 26 - version = "1.66.0"; 27 - 28 - format = "other"; 26 + version = "1.67.0"; 27 + pyproject = false; 29 28 30 29 src = fetchFromGitea { 31 30 domain = "codeberg.org"; 32 31 owner = "valos"; 33 32 repo = "Komikku"; 34 33 rev = "v${version}"; 35 - hash = "sha256-hrQZZ0pZhn+Ph7it6LPFtRMN9mvgFkG//zEi+pVb8n4="; 34 + hash = "sha256-vWAYsImJseEQvgq7vreqS76M963zfuL56R87P3od9m4="; 36 35 }; 37 36 38 37 nativeBuildInputs = [
+3 -2
pkgs/by-name/ma/materialgram/package.nix
··· 11 11 unwrapped = telegram-desktop.unwrapped.overrideAttrs ( 12 12 finalAttrs: previousAttrs: { 13 13 pname = "materialgram-unwrapped"; 14 - version = "5.7.0.1"; 14 + version = "5.9.0.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "kukuruzka165"; 18 18 repo = "materialgram"; 19 19 rev = "refs/tags/v${finalAttrs.version}"; 20 - hash = "sha256-YdLUwXMATla64KSYnXLXwLl0KktNoB/IuHIIY44R1VY="; 20 + hash = "sha256-QmXwO8Dn+ATWGwN5smxOB2kxmJZETSMbqwFoR0t3luc="; 21 21 fetchSubmodules = true; 22 22 }; 23 23 ··· 32 32 maintainers = with lib.maintainers; [ 33 33 oluceps 34 34 aleksana 35 + stellessia 35 36 ]; 36 37 mainProgram = "materialgram"; 37 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 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 22 23 }: 23 24 24 - stdenv.mkDerivation rec { 25 + let 25 26 pname = "megacmd"; 26 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; 27 42 28 - src = fetchFromGitHub { 29 - owner = "meganz"; 30 - repo = "MEGAcmd"; 31 - rev = "${version}_Linux"; 32 - hash = "sha256-UlSqwM8GQKeG8/K0t5DbM034NQOeBg+ujNi/MMsVCuM="; 33 - fetchSubmodules = true; 34 - }; 43 + src = fetchFromGitHub ( 44 + srcOptions 45 + // { 46 + owner = "meganz"; 47 + repo = "MEGAcmd"; 48 + fetchSubmodules = true; 49 + } 50 + ); 35 51 36 52 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 53 + nativeBuildInputs = [ 54 + autoreconfHook 55 + pkg-config 54 56 ]; 55 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 + 56 77 configureFlags = [ 57 - "--disable-curl-checks" 58 78 "--disable-examples" 59 79 "--with-cares" 60 80 "--with-cryptopp" 61 81 "--with-curl" 62 - # "--with-ffmpeg" 63 - "--without-freeimage" # disabled as freeimage is insecure 82 + "--with-ffmpeg" 64 83 "--with-icu" 65 84 "--with-libmediainfo" 66 85 "--with-libuv" ··· 69 88 "--with-readline" 70 89 "--with-sodium" 71 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 72 101 ]; 73 102 74 - meta = with lib; { 103 + meta = { 75 104 description = "MEGA Command Line Interactive and Scriptable Application"; 76 105 homepage = "https://mega.io/cmd"; 77 - license = with licenses; [ bsd2 gpl3Only ]; 78 - platforms = [ "i686-linux" "x86_64-linux" ]; 79 - maintainers = with maintainers; [ lunik1 ]; 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 + ]; 80 115 }; 81 116 }
+2 -2
pkgs/by-name/om/omnictl/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "omnictl"; 10 - version = "0.45.0"; 10 + version = "0.45.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "siderolabs"; 14 14 repo = "omni"; 15 15 rev = "v${version}"; 16 - hash = "sha256-FA2lGSeTbJXc/BEWOu43sV2xS9tTwQ+iKrDW2tFAsJ4="; 16 + hash = "sha256-a9lp/XDet4CcMadMHj1ia4tdsK/Y8Sfd2f6/A2j1liQ="; 17 17 }; 18 18 19 19 vendorHash = "sha256-U/cserG37gM1XDN9HcPqnq4hPJSaOaLBoIs5OcsocYw=";
+9
pkgs/by-name/ou/outils/package.nix
··· 1 1 { 2 2 stdenv, 3 3 fetchFromGitHub, 4 + fetchpatch2, 4 5 lib, 5 6 }: 6 7 ··· 14 15 rev = "v${version}"; 15 16 hash = "sha256-FokJytwQsbGsryBzyglpb1Hg3wti/CPQTOfIGIz9ThA="; 16 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 + ]; 17 26 18 27 makeFlags = [ "PREFIX=$(out)" ]; 19 28
+1
pkgs/by-name/pd/pdfposter/package.nix
··· 12 12 pypdf2 = super.pypdf2.overridePythonAttrs (oldAttrs: rec { 13 13 version = "2.11.1"; 14 14 format = "setuptools"; 15 + pyproject = null; 15 16 src = fetchPypi { 16 17 pname = "PyPDF2"; 17 18 inherit version;
+2 -2
pkgs/by-name/re/remnote/package.nix
··· 6 6 }: 7 7 let 8 8 pname = "remnote"; 9 - version = "1.18.19"; 9 + version = "1.18.26"; 10 10 src = fetchurl { 11 11 url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage"; 12 - hash = "sha256-J7bghty2F54pdd/maWMWtG1kDm/sETgY1bR/jMy23e4="; 12 + hash = "sha256-G7I2r/jZ3Ht8Is2TagNnyQolasfLlO57qzGcVT4QvkI="; 13 13 }; 14 14 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 15 15 in
+5 -5
pkgs/by-name/rq/rquickshare/package.nix
··· 7 7 pname = "rquickshare"; 8 8 version = "0.11.2"; 9 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="; 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 12 }; 13 13 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 14 14 in 15 15 appimageTools.wrapType2 { 16 16 inherit pname version src; 17 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' 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 21 cp -r ${appimageContents}/usr/share/icons $out/share 22 22 ''; 23 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 141 }, 142 142 { 143 143 "pname": "Sandreas.AudioMetadata", 144 - "version": "0.2.5", 145 - "hash": "sha256-4FrW1QV4okSEswTpgj/dhFurR/2AHyTgqDgMBjRproI=" 144 + "version": "0.2.7", 145 + "hash": "sha256-GYD+nAURuU99/3JH/4QTthhzAVsau/qpcvih4eiJxtk=" 146 146 }, 147 147 { 148 148 "pname": "Sandreas.Files", ··· 241 241 }, 242 242 { 243 243 "pname": "z440.atl.core", 244 - "version": "6.9.0", 245 - "hash": "sha256-lme55hhVwZ9Y/wVmekA0gVIsw3RUoyYuL9gMEHXuWMU=" 244 + "version": "6.11.0", 245 + "hash": "sha256-V1r1ftZ/Ud0pw/qwnqpJodRaGi9FyG3uIy3ykJUvxjg=" 246 246 } 247 247 ]
+2 -2
pkgs/by-name/to/tone/package.nix
··· 9 9 10 10 buildDotnetModule rec { 11 11 pname = "tone"; 12 - version = "0.2.3"; 12 + version = "0.2.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "sandreas"; 16 16 repo = "tone"; 17 17 tag = "v${version}"; 18 - hash = "sha256-NBFAPEeUKZgyfNlvcOBS1IpktEnI+fOd9WLj0ByzpLY="; 18 + hash = "sha256-DX54NSlqAZzVQObm9qjUsYatjxjHKGcSLHH1kVD4Row="; 19 19 }; 20 20 21 21 projectFile = "tone/tone.csproj";
+3 -3
pkgs/by-name/vo/vopono/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "vopono"; 9 - version = "0.10.10"; 9 + version = "0.10.11"; 10 10 11 11 src = fetchCrate { 12 12 inherit pname version; 13 - hash = "sha256-HjubzbRsmRU33oI1p1kzCFUjC2YQJhVqljd/FHzAnMw="; 13 + hash = "sha256-qgsfTniikrdykFSFqZATp7ewPZm5z5p5FMztNKWzPIY="; 14 14 }; 15 15 16 - cargoHash = "sha256-YBDB1g8cUOo1hS8Fi03Bvpe63bolbPmhGbvT16G73js="; 16 + cargoHash = "sha256-/z4qBBY/Htlv55vNKj2c1frWsUFTRweJh/G0T2jHLr4="; 17 17 18 18 meta = with lib; { 19 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 1 { 2 2 lib, 3 - stdenv, 3 + stdenvNoCC, 4 4 fetchFromGitHub, 5 5 fontforge, 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenvNoCC.mkDerivation rec { 9 9 pname = "navilu-font"; 10 10 version = "1.2"; 11 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 17 sha256 = "12dbm87wvcpmn7nzgzwlk45cybp091diara8blqm6129ps27z6kb"; 18 18 stripRoot = false; 19 19 } 20 - + /profont-x11; 20 + + "/profont-x11"; 21 21 22 22 srcOtb = 23 23 fetchzip { ··· 25 25 sha256 = "18rfhfqrsj3510by0w1a7ak5as6r2cxh8xv02xc1y30mfa6g24x6"; 26 26 stripRoot = false; 27 27 } 28 - + /profont-otb; 28 + + "/profont-otb"; 29 29 30 30 dontBuild = true; 31 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 19 inherit version; 20 20 hash = "sha256-AZNIrmtqg8ekBtFFN8J3zs96OlOyY+w0LIHe1YRaZ+4="; 21 21 }; 22 + patches = [ ./dotnet-8-upgrade.patch ]; 22 23 23 24 # This buildDotnetModule is used only to get nuget sources, the actual 24 25 # build is done in `buildPythonPackage` below. 25 26 dotnet-build = buildDotnetModule { 26 - inherit pname version src; 27 + inherit 28 + pname 29 + version 30 + src 31 + patches 32 + ; 27 33 projectFile = [ 28 34 "netfx_loader/ClrLoader.csproj" 29 35 "example/example.csproj" 30 36 ]; 31 37 nugetDeps = ./deps.json; 32 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 38 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 33 39 }; 34 40 in 35 41 buildPythonPackage { 36 - inherit pname version src; 42 + inherit 43 + pname 44 + version 45 + src 46 + patches 47 + ; 37 48 38 49 format = "pyproject"; 39 50 40 - buildInputs = dotnetCorePackages.sdk_6_0.packages ++ dotnet-build.nugetDeps; 51 + buildInputs = dotnetCorePackages.sdk_8_0.packages ++ dotnet-build.nugetDeps; 41 52 42 53 nativeBuildInputs = [ 43 54 setuptools 44 55 setuptools-scm 45 56 wheel 46 - dotnetCorePackages.sdk_6_0 57 + dotnetCorePackages.sdk_8_0 47 58 ]; 48 59 49 60 propagatedBuildInputs = [ cffi ];
+6 -6
pkgs/development/python-modules/clr-loader/deps.json
··· 2 2 { 3 3 "pname": "Microsoft.NETCore.Platforms", 4 4 "version": "1.1.0", 5 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 5 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 6 6 }, 7 7 { 8 8 "pname": "Microsoft.NETFramework.ReferenceAssemblies", 9 9 "version": "1.0.0", 10 - "sha256": "0na724xhvqm63vq9y18fl9jw9q2v99bdwr353378s5fsi11qzxp9" 10 + "hash": "sha256-6faPQ4jaFY3OGGVk3lZKW+DEZaIOBZ/wHqbiDTsRR1k=" 11 11 }, 12 12 { 13 13 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net461", 14 14 "version": "1.0.0", 15 - "sha256": "00vkn4c6i0rn1l9pv912y0wgb9h6ks76qah8hvk441nari8fqbm1" 15 + "hash": "sha256-oS7sUMzKBkLmhggqbI6eBqb1OPAipH0TDTaDaBixcwM=" 16 16 }, 17 17 { 18 18 "pname": "Microsoft.NETFramework.ReferenceAssemblies.net47", 19 19 "version": "1.0.0", 20 - "sha256": "00v56phfn01ahf4fq7zanz6hjyzpp00hkkk4a190l0dywrv387i6" 20 + "hash": "sha256-Jh40dua+AQpSUGTOCQG493sJzbfqH+yIgyoA6+A1ZQM=" 21 21 }, 22 22 { 23 23 "pname": "NETStandard.Library", 24 24 "version": "2.0.3", 25 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 25 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 26 26 }, 27 27 { 28 28 "pname": "NXPorts", 29 29 "version": "1.0.0", 30 - "sha256": "02zva596c3vsnlhi1b1391vbfl8a6142dvm61r8j1c70b07916lj" 30 + "hash": "sha256-kpqQDljgsCBRDqbuJkgwClG3dkgjrBAhtXoPZlJR+ws=" 31 31 } 32 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 32 33 33 buildPythonPackage rec { 34 34 pname = "orange-canvas-core"; 35 - version = "0.2.4"; 35 + version = "0.2.5"; 36 36 pyproject = true; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "biolab"; 40 40 repo = "orange-canvas-core"; 41 41 tag = version; 42 - hash = "sha256-tLFWOXsAhqxFV0wdlAKestO/F/rDtdFnKDd0FXPeNpg="; 42 + hash = "sha256-uh9wNqgLYRcnCSOdpeLx6ZTRC0cpq6lG/sqmrYLR+3g="; 43 43 }; 44 44 45 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 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + buildDotnetModule, 6 + dotnetCorePackages, 7 + powershell, 8 + autoSignDarwinBinariesHook, 9 + glibcLocales, 9 10 }: 10 - buildDotnetModule rec { 11 + buildDotnetModule (finalAttrs: rec { 11 12 pname = "ilspycmd"; 12 - version = "8.0"; 13 + version = "9.0-preview3"; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "icsharpcode"; 16 17 repo = "ILSpy"; 17 18 rev = "v${version}"; 18 - hash = "sha256-ERBYXgpBRXISfqBSBEydEQuD/5T1dvJ+wNg2U5pKip4="; 19 + hash = "sha256-7cPXFaEKr76GtqcNsKx7tstRUeTpSTF8ggxbyEnQa9M="; 19 20 }; 20 21 21 - nativeBuildInputs = [ 22 - powershell 23 - ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ autoSignDarwinBinariesHook ]; 22 + nativeBuildInputs = 23 + [ 24 + powershell 25 + ] 26 + ++ lib.optionals (stdenvNoCC.hostPlatform.isDarwin && stdenvNoCC.hostPlatform.isAarch64) [ 27 + autoSignDarwinBinariesHook 28 + ]; 24 29 25 30 # https://github.com/NixOS/nixpkgs/issues/38991 26 31 # 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"; 32 + env.LOCALE_ARCHIVE = lib.optionalString stdenvNoCC.hostPlatform.isLinux "${glibcLocales}/lib/locale/locale-archive"; 28 33 29 - dotnet-sdk = dotnetCorePackages.sdk_6_0; 30 - dotnet-runtime = dotnetCorePackages.runtime_6_0; 34 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 31 35 32 36 projectFile = "ICSharpCode.ILSpyCmd/ICSharpCode.ILSpyCmd.csproj"; 33 37 nugetDeps = ./deps.json; ··· 35 39 # see: https://github.com/tunnelvisionlabs/ReferenceAssemblyAnnotator/issues/94 36 40 linkNugetPackages = true; 37 41 38 - meta = with lib; { 42 + meta = { 39 43 description = "Tool for decompiling .NET assemblies and generating portable PDBs"; 40 44 mainProgram = "ilspycmd"; 41 45 homepage = "https://github.com/icsharpcode/ILSpy"; 42 - changelog = "https://github.com/icsharpcode/ILSpy/releases/tag/${src.rev}"; 43 - license = with licenses; [ 46 + changelog = "https://github.com/icsharpcode/ILSpy/releases/tag/${finalAttrs.src.rev}"; 47 + license = with lib.licenses; [ 44 48 mit 45 49 # third party dependencies 46 50 mspl 47 51 asl20 48 52 ]; 49 - sourceProvenance = with sourceTypes; [ fromSource binaryBytecode ]; 50 - maintainers = with maintainers; [ emilytrau ]; 53 + sourceProvenance = with lib.sourceTypes; [ 54 + fromSource 55 + binaryBytecode 56 + ]; 57 + maintainers = with lib.maintainers; [ emilytrau ]; 51 58 }; 52 - } 59 + })
+184 -224
pkgs/development/tools/ilspycmd/deps.json
··· 1 1 [ 2 2 { 3 3 "pname": "K4os.Compression.LZ4", 4 - "version": "1.3.5", 5 - "sha256": "1nv9inhz0n25lhkw9xgp6g5xbqmcdccdhx6mwrli0pdp6hjmlh9k" 4 + "version": "1.3.8", 5 + "hash": "sha256-OmT3JwO4qpkZDL7XqiFqZCyxySj64s9t+mXcN1T+IyA=" 6 6 }, 7 7 { 8 8 "pname": "McMaster.Extensions.CommandLineUtils", 9 - "version": "3.1.0", 10 - "sha256": "075n1mfsxwz514r94l8i3ax0wp43c3xb4f9w25a96h6xxnj0k2hd" 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=" 11 16 }, 12 17 { 13 18 "pname": "Microsoft.Build.Tasks.Git", 14 - "version": "1.1.1", 15 - "sha256": "1bb5p4zlnfn88skkvymxfsn0jybqncl4356hwnic9jxdq2d4fz1w" 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=" 16 26 }, 17 27 { 18 - "pname": "Microsoft.NETCore.App.Ref", 28 + "pname": "Microsoft.Extensions.Configuration.Abstractions", 19 29 "version": "6.0.0", 20 - "sha256": "1skgkralqkg2srvgvrmbsmya67f37gzk40lg28j8nz5mg8k8g0ia" 30 + "hash": "sha256-Evg+Ynj2QUa6Gz+zqF+bUyfGD0HI5A2fHmxZEXbn3HA=" 21 31 }, 22 32 { 23 - "pname": "Microsoft.NETCore.Platforms", 24 - "version": "1.1.0", 25 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 33 + "pname": "Microsoft.Extensions.Configuration.Abstractions", 34 + "version": "8.0.0", 35 + "hash": "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o=" 26 36 }, 27 37 { 28 - "pname": "Microsoft.NETCore.Targets", 29 - "version": "1.1.0", 30 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 38 + "pname": "Microsoft.Extensions.Configuration.Binder", 39 + "version": "8.0.2", 40 + "hash": "sha256-aGB0VuoC34YadAEqrwoaXLc5qla55pswDV2xLSmR7SE=" 31 41 }, 32 42 { 33 - "pname": "Microsoft.SourceLink.Common", 34 - "version": "1.1.1", 35 - "sha256": "0xkdqs7az2cprar7jzjlgjpd64l6f8ixcmwmpkdm03fyb4s5m0bg" 43 + "pname": "Microsoft.Extensions.Configuration.CommandLine", 44 + "version": "8.0.0", 45 + "hash": "sha256-fmPC/o8S+weTtQJWykpnGHm6AKVU21xYE/CaHYU7zgg=" 36 46 }, 37 47 { 38 - "pname": "Microsoft.SourceLink.GitHub", 39 - "version": "1.1.1", 40 - "sha256": "099y35f2npvva3jk1zp8hn0vb9pwm2l0ivjasdly6y2idv53s5yy" 48 + "pname": "Microsoft.Extensions.Configuration.EnvironmentVariables", 49 + "version": "8.0.0", 50 + "hash": "sha256-+bjFZvqCsMf2FRM2olqx/fub+QwfM1kBhjGVOT5HC48=" 41 51 }, 42 52 { 43 - "pname": "Mono.Cecil", 44 - "version": "0.11.4", 45 - "sha256": "1yxa7mh432s7g7p9r7scqxvxjk5ypwc567qdbf0gmk8fbf0d3f8y" 53 + "pname": "Microsoft.Extensions.Configuration.FileExtensions", 54 + "version": "8.0.1", 55 + "hash": "sha256-iRA8L7BX/fe5LHCVOhzBSk30GfshP7V2Qj2nxpEvStA=" 46 56 }, 47 57 { 48 - "pname": "NETStandard.Library", 49 - "version": "2.0.3", 50 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 58 + "pname": "Microsoft.Extensions.Configuration.Json", 59 + "version": "8.0.1", 60 + "hash": "sha256-J8EK/yhsfTpeSUY8F81ZTBV9APHiPUliN7d+n2OX9Ig=" 51 61 }, 52 62 { 53 - "pname": "runtime.any.System.Collections", 54 - "version": "4.3.0", 55 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 63 + "pname": "Microsoft.Extensions.Configuration.UserSecrets", 64 + "version": "8.0.1", 65 + "hash": "sha256-yGvWfwBhyFudcIv96pKWaQ1MIMOiv5LHSCn+9J7Doz0=" 56 66 }, 57 67 { 58 - "pname": "runtime.any.System.Globalization", 59 - "version": "4.3.0", 60 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 68 + "pname": "Microsoft.Extensions.DependencyInjection", 69 + "version": "8.0.1", 70 + "hash": "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU=" 61 71 }, 62 72 { 63 - "pname": "runtime.any.System.IO", 64 - "version": "4.3.0", 65 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 73 + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 74 + "version": "6.0.0", 75 + "hash": "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4=" 66 76 }, 67 77 { 68 - "pname": "runtime.any.System.Reflection", 69 - "version": "4.3.0", 70 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 78 + "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 79 + "version": "8.0.2", 80 + "hash": "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY=" 71 81 }, 72 82 { 73 - "pname": "runtime.any.System.Reflection.Primitives", 74 - "version": "4.3.0", 75 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 83 + "pname": "Microsoft.Extensions.Diagnostics", 84 + "version": "8.0.1", 85 + "hash": "sha256-CraHNCaVlMiYx6ff9afT6U7RC/MoOCXM3pn2KrXkiLc=" 76 86 }, 77 87 { 78 - "pname": "runtime.any.System.Resources.ResourceManager", 79 - "version": "4.3.0", 80 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 88 + "pname": "Microsoft.Extensions.Diagnostics.Abstractions", 89 + "version": "8.0.1", 90 + "hash": "sha256-d5DVXhA8qJFY9YbhZjsTqs5w5kDuxF5v+GD/WZR1QL0=" 81 91 }, 82 92 { 83 - "pname": "runtime.any.System.Runtime", 84 - "version": "4.3.0", 85 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 93 + "pname": "Microsoft.Extensions.FileProviders.Abstractions", 94 + "version": "6.0.0", 95 + "hash": "sha256-uBjWjHKEXjZ9fDfFxMjOou3lhfTNhs1yO+e3fpWreLk=" 86 96 }, 87 97 { 88 - "pname": "runtime.any.System.Runtime.Handles", 89 - "version": "4.3.0", 90 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 98 + "pname": "Microsoft.Extensions.FileProviders.Abstractions", 99 + "version": "8.0.0", 100 + "hash": "sha256-uQSXmt47X2HGoVniavjLICbPtD2ReQOYQMgy3l0xuMU=" 91 101 }, 92 102 { 93 - "pname": "runtime.any.System.Runtime.InteropServices", 94 - "version": "4.3.0", 95 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 103 + "pname": "Microsoft.Extensions.FileProviders.Physical", 104 + "version": "8.0.0", 105 + "hash": "sha256-29y5ZRQ1ZgzVOxHktYxyiH40kVgm5un2yTGdvuSWnRc=" 96 106 }, 97 107 { 98 - "pname": "runtime.any.System.Text.Encoding", 99 - "version": "4.3.0", 100 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 108 + "pname": "Microsoft.Extensions.FileSystemGlobbing", 109 + "version": "8.0.0", 110 + "hash": "sha256-+Oz41JR5jdcJlCJOSpQIL5OMBNi+1Hl2d0JUHfES7sU=" 101 111 }, 102 112 { 103 - "pname": "runtime.any.System.Text.Encoding.Extensions", 104 - "version": "4.3.0", 105 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 113 + "pname": "Microsoft.Extensions.Hosting", 114 + "version": "8.0.1", 115 + "hash": "sha256-FFLo6em0N2vaWg6//vaQhxoOgT9LLH5Y2KWkCeX5xQ4=" 106 116 }, 107 117 { 108 - "pname": "runtime.any.System.Threading.Tasks", 109 - "version": "4.3.0", 110 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 118 + "pname": "Microsoft.Extensions.Hosting.Abstractions", 119 + "version": "6.0.0", 120 + "hash": "sha256-ksIPO6RhfbYx/i3su4J3sDhoL+TDnITKsgIpEqnpktc=" 111 121 }, 112 122 { 113 - "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 114 - "version": "4.3.0", 115 - "sha256": "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d" 123 + "pname": "Microsoft.Extensions.Hosting.Abstractions", 124 + "version": "8.0.1", 125 + "hash": "sha256-/bIVL9uvBQhV/KQmjA1ZjR74sMfaAlBb15sVXsGDEVA=" 116 126 }, 117 127 { 118 - "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 119 - "version": "4.3.0", 120 - "sha256": "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59" 128 + "pname": "Microsoft.Extensions.Logging", 129 + "version": "8.0.1", 130 + "hash": "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU=" 121 131 }, 122 132 { 123 - "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 124 - "version": "4.3.0", 125 - "sha256": "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa" 133 + "pname": "Microsoft.Extensions.Logging.Abstractions", 134 + "version": "6.0.0", 135 + "hash": "sha256-QNqcQ3x+MOK7lXbWkCzSOWa/2QyYNbdM/OEEbWN15Sw=" 126 136 }, 127 137 { 128 - "pname": "runtime.native.System", 129 - "version": "4.3.0", 130 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 138 + "pname": "Microsoft.Extensions.Logging.Abstractions", 139 + "version": "8.0.2", 140 + "hash": "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc=" 131 141 }, 132 142 { 133 - "pname": "runtime.native.System.IO.Compression", 134 - "version": "4.3.0", 135 - "sha256": "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d" 143 + "pname": "Microsoft.Extensions.Logging.Configuration", 144 + "version": "8.0.1", 145 + "hash": "sha256-E2JbJG2EXlv2HUWLi17kIkAL6RC9rC2E18C3gAyOuaE=" 136 146 }, 137 147 { 138 - "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 139 - "version": "4.3.0", 140 - "sha256": "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97" 148 + "pname": "Microsoft.Extensions.Logging.Console", 149 + "version": "8.0.1", 150 + "hash": "sha256-2thhF1JbDNj3Bx2fcH7O26uHGNeMd9MYah6N60lIpIU=" 141 151 }, 142 152 { 143 - "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 144 - "version": "4.3.0", 145 - "sha256": "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3" 153 + "pname": "Microsoft.Extensions.Logging.Debug", 154 + "version": "8.0.1", 155 + "hash": "sha256-gKFqBg5lbjy5VBEcAuoQ/SsXAxvrYdBYOu9dV60eJKg=" 146 156 }, 147 157 { 148 - "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 149 - "version": "4.3.0", 150 - "sha256": "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf" 158 + "pname": "Microsoft.Extensions.Logging.EventLog", 159 + "version": "8.0.1", 160 + "hash": "sha256-1UkEOwl3Op2b3jTvpI10hHxIe9FqeVVy+VB1tZp6Lc8=" 151 161 }, 152 162 { 153 - "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 154 - "version": "4.3.0", 155 - "sha256": "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3" 163 + "pname": "Microsoft.Extensions.Logging.EventSource", 164 + "version": "8.0.1", 165 + "hash": "sha256-EINT/PgfB4Dvf+1JBzL1plPT35ezT7kyS8y/XMMgYxA=" 156 166 }, 157 167 { 158 - "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 159 - "version": "4.3.0", 160 - "sha256": "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn" 168 + "pname": "Microsoft.Extensions.Options", 169 + "version": "8.0.2", 170 + "hash": "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys=" 161 171 }, 162 172 { 163 - "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 164 - "version": "4.3.0", 165 - "sha256": "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3" 173 + "pname": "Microsoft.Extensions.Options.ConfigurationExtensions", 174 + "version": "8.0.0", 175 + "hash": "sha256-A5Bbzw1kiNkgirk5x8kyxwg9lLTcSngojeD+ocpG1RI=" 166 176 }, 167 177 { 168 - "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 169 - "version": "4.3.0", 170 - "sha256": "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy" 178 + "pname": "Microsoft.Extensions.Primitives", 179 + "version": "6.0.0", 180 + "hash": "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4=" 171 181 }, 172 182 { 173 - "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 174 - "version": "4.3.0", 175 - "sha256": "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5" 183 + "pname": "Microsoft.Extensions.Primitives", 184 + "version": "8.0.0", 185 + "hash": "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo=" 176 186 }, 177 187 { 178 - "pname": "runtime.unix.System.Diagnostics.Debug", 179 - "version": "4.3.0", 180 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 188 + "pname": "Microsoft.NETCore.App.Ref", 189 + "version": "8.0.0", 190 + "hash": "sha256-yTkWSH0P4IsKl+fAX9tapyug3omJQ4wxMWcMYhBc20M=" 181 191 }, 182 192 { 183 - "pname": "runtime.unix.System.Private.Uri", 184 - "version": "4.3.0", 185 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 193 + "pname": "Microsoft.NETCore.Platforms", 194 + "version": "1.1.0", 195 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 186 196 }, 187 197 { 188 - "pname": "runtime.unix.System.Runtime.Extensions", 189 - "version": "4.3.0", 190 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 198 + "pname": "Microsoft.SourceLink.Common", 199 + "version": "8.0.0", 200 + "hash": "sha256-AfUqleVEqWuHE7z2hNiwOLnquBJ3tuYtbkdGMppHOXc=" 191 201 }, 192 202 { 193 - "pname": "System.Buffers", 194 - "version": "4.5.1", 195 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 203 + "pname": "Microsoft.SourceLink.GitHub", 204 + "version": "8.0.0", 205 + "hash": "sha256-hNTkpKdCLY5kIuOmznD1mY+pRdJ0PKu2HypyXog9vb0=" 196 206 }, 197 207 { 198 - "pname": "System.Collections", 199 - "version": "4.3.0", 200 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 208 + "pname": "Mono.Cecil", 209 + "version": "0.11.6", 210 + "hash": "sha256-0qI4MqqpSLqaAazEK1cm40xfmVlY8bMNRcDnxws6ctU=" 201 211 }, 202 212 { 203 - "pname": "System.Collections.Immutable", 204 - "version": "6.0.0", 205 - "sha256": "1js98kmjn47ivcvkjqdmyipzknb9xbndssczm8gq224pbaj1p88c" 213 + "pname": "NETStandard.Library", 214 + "version": "2.0.3", 215 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 206 216 }, 207 217 { 208 - "pname": "System.Collections.Immutable", 209 - "version": "7.0.0", 210 - "sha256": "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm" 218 + "pname": "Newtonsoft.Json", 219 + "version": "13.0.3", 220 + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" 211 221 }, 212 222 { 213 - "pname": "System.ComponentModel.Annotations", 214 - "version": "5.0.0", 215 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 223 + "pname": "NuGet.Common", 224 + "version": "6.11.1", 225 + "hash": "sha256-UyZtDyTuymC+sKSX+ripOI6MmJZn11loVapVs4uzaGo=" 216 226 }, 217 227 { 218 - "pname": "System.Composition", 219 - "version": "6.0.0", 220 - "sha256": "1p7hysns39cc24af6dwd4m48bqjsrr3clvi4aws152mh2fgyg50z" 228 + "pname": "NuGet.Configuration", 229 + "version": "6.11.1", 230 + "hash": "sha256-JH2UCpjYg8pkqxQ4j4BrWiTKhGzgfn55NMr32wf6+FQ=" 221 231 }, 222 232 { 223 - "pname": "System.Composition.AttributedModel", 224 - "version": "6.0.0", 225 - "sha256": "1mqrblb0l65hw39d0hnspqcv85didpn4wbiwhfgj4784wzqx2w6k" 233 + "pname": "NuGet.Frameworks", 234 + "version": "6.11.1", 235 + "hash": "sha256-p25Oa7wJjwF+2puIhBkZZkKSuk4jGq7xikYSCdfp9Vc=" 226 236 }, 227 237 { 228 - "pname": "System.Composition.Convention", 229 - "version": "6.0.0", 230 - "sha256": "02km3yb94p1c4s7liyhkmda0g71zm1rc8ijsfmy4bnlkq15xjw3b" 238 + "pname": "NuGet.Packaging", 239 + "version": "6.11.1", 240 + "hash": "sha256-1yY3p5hQwbUgYCyHnBcuGWiiIib1ppPYt2ntxwXSJW0=" 231 241 }, 232 242 { 233 - "pname": "System.Composition.Hosting", 234 - "version": "6.0.0", 235 - "sha256": "0big5nk8c44rxp6cfykhk7rxvn2cgwa99w6c3v2a36adc3lj36ky" 243 + "pname": "NuGet.Protocol", 244 + "version": "6.11.1", 245 + "hash": "sha256-/zFvBV83Q5oMNu68BjmrHtZMAxf/YkDJV8HSsl5GjsY=" 236 246 }, 237 247 { 238 - "pname": "System.Composition.Runtime", 239 - "version": "6.0.0", 240 - "sha256": "0vq5ik63yii1784gsa2f2kx9w6xllmm8b8rk0arid1jqdj1nyrlw" 248 + "pname": "NuGet.Versioning", 249 + "version": "6.11.1", 250 + "hash": "sha256-fl8lyChMjV7Sp8keAP7CdXZh7ARN/mU39T3gG74jDWY=" 241 251 }, 242 252 { 243 - "pname": "System.Composition.TypedParts", 244 - "version": "6.0.0", 245 - "sha256": "0y9pq3y60nyrpfy51f576a0qjjdh61mcv8vnik32pm4bz56h9q72" 253 + "pname": "System.Buffers", 254 + "version": "4.5.1", 255 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 246 256 }, 247 257 { 248 - "pname": "System.Diagnostics.Debug", 249 - "version": "4.3.0", 250 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 258 + "pname": "System.Collections.Immutable", 259 + "version": "6.0.0", 260 + "hash": "sha256-DKEbpFqXCIEfqp9p3ezqadn5b/S1YTk32/EQK+tEScs=" 251 261 }, 252 262 { 253 - "pname": "System.Globalization", 254 - "version": "4.3.0", 255 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 263 + "pname": "System.ComponentModel.Annotations", 264 + "version": "5.0.0", 265 + "hash": "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=" 256 266 }, 257 267 { 258 - "pname": "System.IO", 259 - "version": "4.3.0", 260 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 268 + "pname": "System.Composition.AttributedModel", 269 + "version": "8.0.0", 270 + "hash": "sha256-n3aXiBAFIlQicSRLiNtLh++URSUxRBLggsjJ8OMNRpo=" 261 271 }, 262 272 { 263 - "pname": "System.IO.Compression", 264 - "version": "4.3.0", 265 - "sha256": "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz" 273 + "pname": "System.Diagnostics.EventLog", 274 + "version": "8.0.1", 275 + "hash": "sha256-zvqd72pwgcGoa1nH3ZT1C0mP9k53vFLJ69r5MCQ1saA=" 266 276 }, 267 277 { 268 - "pname": "System.IO.FileSystem.Primitives", 269 - "version": "4.3.0", 270 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 278 + "pname": "System.Formats.Asn1", 279 + "version": "6.0.0", 280 + "hash": "sha256-KaMHgIRBF7Nf3VwOo+gJS1DcD+41cJDPWFh+TDQ8ee8=" 271 281 }, 272 282 { 273 283 "pname": "System.Memory", 274 284 "version": "4.5.4", 275 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 285 + "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" 276 286 }, 277 287 { 278 288 "pname": "System.Numerics.Vectors", 279 289 "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" 290 + "hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=" 291 291 }, 292 292 { 293 293 "pname": "System.Reflection.Metadata", 294 294 "version": "6.0.0", 295 - "sha256": "1x0b289r9yjzdqypi2x3dc8sa66s3b6bpc7l2f8hxrzl6czdg4al" 295 + "hash": "sha256-VJHXPjP05w6RE/Swu8wa2hilEWuji3g9bl/6lBMSC/Q=" 296 296 }, 297 297 { 298 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" 299 + "version": "8.0.1", 300 + "hash": "sha256-Swip1XuTs/r2m4RKuG5BXXxcaNGRh+jbMnjFRNdL87U=" 316 301 }, 317 302 { 318 303 "pname": "System.Runtime.CompilerServices.Unsafe", 319 304 "version": "6.0.0", 320 - "sha256": "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc" 305 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 321 306 }, 322 307 { 323 - "pname": "System.Runtime.Extensions", 324 - "version": "4.3.0", 325 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 308 + "pname": "System.Security.Cryptography.Pkcs", 309 + "version": "6.0.4", 310 + "hash": "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI=" 326 311 }, 327 312 { 328 - "pname": "System.Runtime.Handles", 329 - "version": "4.3.0", 330 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 313 + "pname": "System.Security.Cryptography.ProtectedData", 314 + "version": "4.4.0", 315 + "hash": "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE=" 331 316 }, 332 317 { 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" 318 + "pname": "TomsToolbox.Composition.Analyzer", 319 + "version": "2.20.0", 320 + "hash": "sha256-xjWXdkXF8X9nDdzLNA2H1WcpPZV4NDiKf//TeQbLUtc=" 361 321 }, 362 322 { 363 323 "pname": "TunnelVisionLabs.ReferenceAssemblyAnnotator", 364 324 "version": "1.0.0-alpha.160", 365 - "sha256": "1wvfa3098a984kydjgjvx43gncnr89fw20if2gqvz8kqn9pxqjbq" 325 + "hash": "sha256-eEncb7J4or/xEy4CwV1C2TL7BulbPtn8JCgplMBQbvM=" 366 326 } 367 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 3 fetchurl, 4 4 lib, 5 5 nodejs, 6 + node-pre-gyp, 7 + node-gyp, 6 8 python3, 7 9 util-linux, 8 10 ffmpeg, ··· 36 38 in 37 39 stdenv.mkDerivation rec { 38 40 39 - pname = "nextcloud-app-recognise"; 41 + pname = "nextcloud-app-recognize"; 40 42 version = currentVersionInfo.version; 41 43 42 44 srcs = ··· 80 82 # Replace all occurences of node (and check that we actually remved them all) 81 83 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -gt 0 82 84 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'" 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}'" 88 90 test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -eq 0 89 91 90 92 ··· 92 94 # Skip trying to install it... (less warnings in the log) 93 95 sed -i '/public function run/areturn ; //skip' recognize/lib/Migration/InstallDeps.php 94 96 95 - ln -s ${ffmpeg}/bin/ffmpeg recognize/node_modules/ffmpeg-static/ffmpeg 97 + ln -s ${lib.getExe ffmpeg} recognize/node_modules/ffmpeg-static/ffmpeg 96 98 ''; 97 99 98 100 nativeBuildInputs = lib.optionals useLibTensorflow [ 99 101 nodejs 100 - nodejs.pkgs.node-pre-gyp 101 - nodejs.pkgs.node-gyp 102 + node-pre-gyp 103 + node-gyp 102 104 python3 103 105 util-linux 104 106 ]; ··· 107 109 cd recognize 108 110 109 111 # Install tfjs dependency 110 - export CPPFLAGS="-I${nodejs}/include/node -Ideps/include" 112 + export CPPFLAGS="-I${lib.getDev nodejs}/include/node -Ideps/include" 111 113 cd node_modules/@tensorflow/tfjs-node 112 114 node-pre-gyp install --prefer-offline --build-from-source --nodedir=${nodejs}/include/node 113 115 cd - ··· 133 135 This app goes through your media collection and adds fitting tags, automatically categorizing your photos and music. 134 136 ''; 135 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"; 136 140 }; 137 141 }
+1 -1
pkgs/servers/pingvin-share/backend.nix
··· 31 31 prisma 32 32 ]; 33 33 34 - npmDepsHash = "sha256-BkwFQVHpg7PuMU5MaW73S6R+wbdGOJ62PR9EE2ghQFg="; 34 + npmDepsHash = "sha256-zzN4r2hednmm5DFnK/RRTKPq0vWiGhG+WyNTPNNP1vc="; 35 35 makeCacheWritable = true; 36 36 npmFlags = [ "--legacy-peer-deps" ]; 37 37
+2 -2
pkgs/servers/pingvin-share/default.nix
··· 5 5 }: 6 6 7 7 let 8 - version = "1.7.0"; 8 + version = "1.8.0"; 9 9 src = fetchFromGitHub { 10 10 owner = "stonith404"; 11 11 repo = "pingvin-share"; 12 12 rev = "v${version}"; 13 - hash = "sha256-wZV3PKnGoD3g4PjSDPwMm4ftUTlEZykNkWlwLCDJfuM="; 13 + hash = "sha256-cgB2cnpWdQFqdz9Lxyl87MOvhELge0YwwY0AoKqL8BU="; 14 14 }; 15 15 in 16 16
+1 -1
pkgs/servers/pingvin-share/frontend.nix
··· 23 23 buildInputs = [ vips ]; 24 24 nativeBuildInputs = [ pkg-config ]; 25 25 26 - npmDepsHash = "sha256-uu/JX039QjVwMtGI8lOjuzPC7kM1knhKycbJ/4cc1o4="; 26 + npmDepsHash = "sha256-wQIQHRVj8weUh/VOBdYVr8Q4ZE9u4rGJbQr0+NE6XG0="; 27 27 makeCacheWritable = true; 28 28 npmFlags = [ "--legacy-peer-deps" ]; 29 29
+2 -2
pkgs/tools/security/ghidra/extensions/ghidra-delinker-extension/default.nix
··· 5 5 fetchFromGitHub, 6 6 }: 7 7 let 8 - version = "0.5.0"; 8 + version = "0.5.1"; 9 9 self = ghidra.buildGhidraExtension { 10 10 pname = "ghidra-delinker-extension"; 11 11 inherit version; ··· 14 14 owner = "boricj"; 15 15 repo = "ghidra-delinker-extension"; 16 16 rev = "v${version}"; 17 - hash = "sha256-y0afqqIsWN33b/zGsxJYn8O+R5IP4eD300CgzMymEA0="; 17 + hash = "sha256-h6F50Z7S6tPOl9mIhChLKoFxHuAkq/n36ysUEFwWGxI="; 18 18 }; 19 19 20 20 postPatch = ''
+1 -34
pkgs/top-level/all-packages.nix
··· 1647 1647 1648 1648 arpack-mpi = arpack.override { useMpi = true; }; 1649 1649 1650 - inherit (callPackages ../data/fonts/arphic {}) 1651 - arphic-ukai arphic-uming; 1652 - 1653 1650 asymptote = libsForQt5.callPackage ../tools/graphics/asymptote { }; 1654 1651 1655 1652 atomicparsley = callPackage ../tools/video/atomicparsley { ··· 2405 2402 }; 2406 2403 2407 2404 jellyfin-mpv-shim = python3Packages.callPackage ../applications/video/jellyfin-mpv-shim { }; 2408 - 2409 - jellyseerr = callPackage ../servers/jellyseerr { }; 2410 2405 2411 2406 juce = callPackage ../development/misc/juce { 2412 2407 stdenv = if stdenv.hostPlatform.isDarwin then overrideSDK stdenv "11.0" else stdenv; ··· 4366 4361 }); 4367 4362 4368 4363 mytetra = libsForQt5.callPackage ../applications/office/mytetra { }; 4369 - 4370 - navilu-font = callPackage ../data/fonts/navilu { stdenv = stdenvNoCC; }; 4371 4364 4372 4365 nerd-fonts = recurseIntoAttrs (callPackage ../data/fonts/nerd-fonts { }); 4373 4366 ··· 10474 10467 qt6 = recurseIntoAttrs (callPackage ../development/libraries/qt-6 { }); 10475 10468 10476 10469 qt6Packages = recurseIntoAttrs (import ./qt6-packages.nix { 10477 - inherit lib __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10470 + inherit lib config __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10478 10471 inherit stdenv; 10479 10472 }); 10480 10473 ··· 12659 12652 12660 12653 andromeda-gtk-theme = libsForQt5.callPackage ../data/themes/andromeda-gtk-theme { }; 12661 12654 12662 - ankacoder = callPackage ../data/fonts/ankacoder { }; 12663 - ankacoder-condensed = callPackage ../data/fonts/ankacoder/condensed.nix { }; 12664 - 12665 12655 ant-theme = callPackage ../data/themes/ant-theme/ant.nix { }; 12666 12656 12667 12657 ant-bloody-theme = callPackage ../data/themes/ant-theme/ant-bloody.nix { }; ··· 12720 12710 inherit (nodePackages) svgo; 12721 12711 }; 12722 12712 12723 - fira-code = callPackage ../data/fonts/fira-code { }; 12724 - fira-code-symbols = callPackage ../data/fonts/fira-code/symbols.nix { }; 12725 - 12726 12713 flat-remix-icon-theme = callPackage ../data/icons/flat-remix-icon-theme { 12727 12714 inherit (plasma5Packages) breeze-icons; 12728 12715 }; ··· 12764 12751 inherit (plasma5Packages) breeze-icons; 12765 12752 }; 12766 12753 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 12754 iosevka = callPackage ../data/fonts/iosevka { }; 12778 12755 iosevka-bin = callPackage ../data/fonts/iosevka/bin.nix { }; 12779 12756 iosevka-comfy = recurseIntoAttrs (callPackages ../data/fonts/iosevka/comfy.nix {}); 12780 - 12781 - joypixels = callPackage ../data/fonts/joypixels { }; 12782 12757 12783 12758 kde-rounded-corners = kdePackages.callPackage ../data/themes/kwin-decorations/kde-rounded-corners { }; 12784 12759 ··· 12865 12840 12866 12841 papis = with python3Packages; toPythonApplication papis; 12867 12842 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 12843 plata-theme = callPackage ../data/themes/plata { 12873 12844 inherit (mate) marco; 12874 12845 }; ··· 12878 12849 powerline-rs = callPackage ../tools/misc/powerline-rs { 12879 12850 inherit (darwin.apple_sdk.frameworks) Security; 12880 12851 }; 12881 - 12882 - profont = callPackage ../data/fonts/profont { }; 12883 12852 12884 12853 qogir-kde = libsForQt5.callPackage ../data/themes/qogir-kde { }; 12885 12854 ··· 12920 12889 source-han-sans-vf-ttf = sourceHanPackages.sans-vf-ttf; 12921 12890 source-han-serif-vf-otf = sourceHanPackages.serif-vf-otf; 12922 12891 source-han-serif-vf-ttf = sourceHanPackages.serif-vf-ttf; 12923 - 12924 - inherit (callPackages ../data/fonts/tai-languages { }) tai-ahom; 12925 12892 12926 12893 tango-icon-theme = callPackage ../data/icons/tango-icon-theme { 12927 12894 gtk = res.gtk2;
+3 -1
pkgs/top-level/qt6-packages.nix
··· 5 5 # this file. 6 6 7 7 { lib 8 + , config 8 9 , __splicedPackages 9 10 , makeScopeWithSplicing' 10 11 , generateSplicesForMkScope ··· 27 28 inherit (self) callPackage; 28 29 noExtraAttrs = set: lib.attrsets.removeAttrs set [ "extend" "override" "overrideScope" "overrideDerivation" ]; 29 30 in (noExtraAttrs qt6) // { 30 - stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; 31 31 32 32 # LIBRARIES 33 33 accounts-qt = callPackage ../development/libraries/accounts-qt { }; ··· 125 125 126 126 xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { }; 127 127 }); 128 + } // lib.optionalAttrs config.allowAliases { 129 + stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; # Added for 25.05 128 130 }