lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
a21275cd 183cd6b0

+1803 -1283
+3 -1
lib/sources.nix
··· 43 43 lib.hasSuffix ".o" baseName || 44 44 lib.hasSuffix ".so" baseName || 45 45 # Filter out nix-build result symlinks 46 - (type == "symlink" && lib.hasPrefix "result" baseName) 46 + (type == "symlink" && lib.hasPrefix "result" baseName) || 47 + # Filter out sockets and other types of files we can't have in the store. 48 + (type == "unknown") 47 49 ); 48 50 49 51 # Filters a source tree removing version control files and directories using cleanSourceWith
+12
maintainers/maintainer-list.nix
··· 1909 1909 githubId = 3086255; 1910 1910 name = "Barry Moore II"; 1911 1911 }; 1912 + chisui = { 1913 + email = "chisui.pd@gmail.com"; 1914 + github = "chisui"; 1915 + githubId = 4526429; 1916 + name = "Philipp Dargel"; 1917 + }; 1912 1918 chivay = { 1913 1919 email = "hubert.jasudowicz@gmail.com"; 1914 1920 github = "chivay"; ··· 4810 4816 github = "izorkin"; 4811 4817 githubId = 26877687; 4812 4818 name = "Yurii Izorkin"; 4819 + }; 4820 + j0xaf = { 4821 + email = "j0xaf@j0xaf.de"; 4822 + name = "Jörn Gersdorf"; 4823 + github = "j0xaf"; 4824 + githubId = 932697; 4813 4825 }; 4814 4826 j0hax = { 4815 4827 name = "Johannes Arnold";
+1
nixos/tests/all-tests.nix
··· 98 98 deluge = handleTest ./deluge.nix {}; 99 99 dendrite = handleTest ./dendrite.nix {}; 100 100 dhparams = handleTest ./dhparams.nix {}; 101 + disable-installer-tools = handleTest ./disable-installer-tools.nix {}; 101 102 discourse = handleTest ./discourse.nix {}; 102 103 dnscrypt-proxy2 = handleTestOn ["x86_64-linux"] ./dnscrypt-proxy2.nix {}; 103 104 dnscrypt-wrapper = handleTestOn ["x86_64-linux"] ./dnscrypt-wrapper {};
+29
nixos/tests/disable-installer-tools.nix
··· 1 + import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... }: 2 + 3 + { 4 + name = "disable-installer-tools"; 5 + 6 + machine = 7 + { pkgs, lib, ... }: 8 + { 9 + system.disableInstallerTools = true; 10 + boot.enableContainers = false; 11 + environment.defaultPackages = []; 12 + }; 13 + 14 + testScript = '' 15 + machine.wait_for_unit("multi-user.target") 16 + machine.wait_until_succeeds("pgrep -f 'agetty.*tty1'") 17 + 18 + with subtest("nixos installer tools should not be included"): 19 + machine.fail("which nixos-rebuild") 20 + machine.fail("which nixos-install") 21 + machine.fail("which nixos-generate-config") 22 + machine.fail("which nixos-enter") 23 + machine.fail("which nixos-version") 24 + machine.fail("which nixos-build-vms") 25 + 26 + with subtest("perl should not be included"): 27 + machine.fail("which perl") 28 + ''; 29 + })
+3 -3
pkgs/applications/audio/plexamp/default.nix
··· 2 2 3 3 let 4 4 pname = "plexamp"; 5 - version = "3.7.0"; 5 + version = "3.7.1"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://plexamp.plex.tv/plexamp.plex.tv/desktop/Plexamp-${version}.AppImage"; 10 10 name="${pname}-${version}.AppImage"; 11 - sha512 = "YixaO54+V9RTYS+Of7AVvBtxUEuCdbzlJmyIBj5k8jlD0bvRP1XwIIeADnofKBLAa2ZsmiQunznPLsjQWgr4JA=="; 11 + sha512 = "n+ZFfKYUx6silpH4bGNRdh5JJPchjKNzFLAhZQPecK2DkmygY35/ZYUNSBioqxuGKax+I/mY5podmQ5iD95ohQ=="; 12 12 }; 13 13 14 14 appimageContents = appimageTools.extractType2 { ··· 34 34 meta = with lib; { 35 35 description = "A beautiful Plex music player for audiophiles, curators, and hipsters"; 36 36 homepage = "https://plexamp.com/"; 37 - changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/31"; 37 + changelog = "https://forums.plex.tv/t/plexamp-release-notes/221280/32"; 38 38 license = licenses.unfree; 39 39 maintainers = with maintainers; [ killercup synthetica ]; 40 40 platforms = [ "x86_64-linux" ];
+61 -61
pkgs/applications/blockchains/wasabibackend/create_deps.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p dotnet-sdk_3 nixfmt 2 + #! nix-shell -i bash -p dotnet-sdk_3 jq xmlstarlet curl nixfmt 3 + set -euo pipefail 3 4 4 5 # Run this script to generate deps.nix 5 - # ./create_deps.sh /path/to/package/source/checkout > deps.nix 6 6 7 7 # TODO: consolidate with other dotnet deps generation scripts by which 8 8 # this script is inspired: 9 9 # - pkgs/servers/nosql/eventstore/create-deps.sh 10 10 # - pkgs/development/dotnet-modules/python-language-server/create_deps.sh 11 + # - pkgs/misc/emulators/ryujinx/updater.sh 12 + 13 + cd "$(dirname "${BASH_SOURCE[0]}")" 14 + 15 + deps_file="$(realpath "./deps.nix")" 16 + 17 + exec 2>&1 6> "$deps_file" 18 + 19 + store_src="$( nix-build ../../../.. -A wasabibackend.src --no-out-link )" 20 + src="$(mktemp -d)" 21 + cp -rT "$store_src" "$src" 22 + chmod -R +w "$src" 23 + pushd "$src" 11 24 12 25 URLBASE="https://www.nuget.org/api/v2/package" 13 26 ··· 30 43 sha256 = \"%s\"; 31 44 })" 32 45 46 + tmpdir="$(mktemp -d -p "$(pwd)")" # must be under source root 47 + trap 'rm -rf "$tmpdir"' EXIT 33 48 34 - function generate_restore_log() { 35 - checkout_path=$1 36 - >&2 echo "generating restore log for $checkout_path..." 37 - cd $checkout_path 38 - dotnet nuget locals all --clear 39 - dotnet restore -v normal --no-cache WalletWasabi.Backend -r linux-x64 40 - cd - 41 - } 49 + HOME="$tmpdir" dotnet restore --packages "$tmpdir"/.nuget/packages \ 50 + --no-cache --force --runtime linux-x64 \ 51 + WalletWasabi.Backend/WalletWasabi.Backend.csproj >&2 42 52 43 - function process_restore_log() { 44 - restore_log=$1 45 - >&2 echo "processing restore log..." 46 - while read line; do 47 - if echo $line | grep -q "^[[:space:]]*Installing"; then 48 - l=$(echo $line | xargs) 49 - l=${l#Installing } 50 - l=${l%.} 51 - echo $l 52 - fi 53 - done < $restore_log 54 - } 53 + mapfile -t repos < <( 54 + xmlstarlet sel -t -v 'configuration/packageSources/add/@value' -n NuGet.config "$tmpdir"/.nuget/NuGet/NuGet.Config | 55 + while IFS= read index 56 + do 57 + curl --compressed -fsL "$index" | \ 58 + jq -r '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"' 59 + done 60 + ) 55 61 56 - function prefetch_deps() { 57 - processed_log=$1 58 - >&2 echo "prefetching deps..." 59 - while read line; do 60 - name=$(echo $line | cut -d' ' -f1) 61 - >&2 echo "prefetching '$name' version: $version" 62 - version=$(echo $line | cut -d' ' -f2) 63 - hash=$(nix-prefetch-url "$URLBASE/$name/$version" 2>/dev/null) 64 - echo "$name $version $hash" 65 - done < $processed_log 66 - } 62 + echo $DEPS_HEADER >&6 67 63 68 - function generate_deps_expression() { 69 - packages=$1 70 - >&2 echo "generating deps nix-expression..." 71 - echo $DEPS_HEADER 72 - while read line; do 73 - name=$(echo $line | cut -d' ' -f1) 74 - version=$(echo $line | cut -d' ' -f2) 75 - hash=$(echo $line | cut -d' ' -f3) 76 - printf "$DEPS_TEMPLATE" $name $version $hash 77 - done < $packages 78 - echo $DEPS_FOOTER 79 - } 64 + cd "$tmpdir/.nuget/packages" 65 + for package in * 66 + do 67 + cd "$package" 68 + for version in * 69 + do 70 + found=false 71 + for repo in "${repos[@]}" 72 + do 73 + url="$repo$package/$version/$package.$version.nupkg" 74 + if curl -fsL "$url" -o /dev/null 75 + then 76 + found=true 77 + break 78 + fi 79 + done 80 + 81 + if ! $found 82 + then 83 + echo "couldn't find $package $version" >&2 84 + exit 1 85 + fi 86 + 87 + sha256=$(nix-prefetch-url "$url" 2>/dev/null) 88 + 89 + printf "$DEPS_TEMPLATE" $package $version $sha256 >&6 90 + done 91 + cd .. 92 + done 80 93 81 - function main() { 82 - checkout_path=$1 83 - tmpdir=$(mktemp -d) 84 - generate_restore_log $checkout_path > $tmpdir/restore.log 85 - process_restore_log $tmpdir/restore.log > $tmpdir/processed.log 86 - prefetch_deps $tmpdir/processed.log > $tmpdir/prefetched.log 87 - generate_deps_expression $tmpdir/prefetched.log > $tmpdir/deps.nix 88 - nixfmt $tmpdir/deps.nix 89 - cat $tmpdir/deps.nix 90 - rm -rf $tmpdir 91 - } 94 + echo $DEPS_FOOTER >&6 92 95 93 - if [ ! -d "$1" ]; then 94 - >&2 echo "First argument must be a directory, the path to the package source checkout" 95 - exit 1 96 - fi 96 + exec 6>&- 97 97 98 - main $@ 98 + nixfmt "$deps_file"
+541 -541
pkgs/applications/blockchains/wasabibackend/deps.nix
··· 9 9 in [ 10 10 11 11 (fetchNuGet { 12 - name = "System.Xml.XmlSerializer"; 13 - version = "4.0.11"; 14 - sha256 = "01nzc3gdslw90qfykq4qzr2mdnqxjl4sj0wp3fixiwdmlmvpib5z"; 12 + name = "microsoft.aspnetcore.app.runtime.linux-x64"; 13 + version = "3.1.19"; 14 + sha256 = "19z4zrchaxcz0a33c33n1qd11z9khj4323nfzsbzah0xxkkj8ka8"; 15 15 }) 16 16 (fetchNuGet { 17 - name = "System.Globalization.Extensions"; 18 - version = "4.3.0"; 19 - sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; 17 + name = "microsoft.aspnetcore.jsonpatch"; 18 + version = "3.1.1"; 19 + sha256 = "0c0aaz9rlh9chc53dnv5jryp0x0415hipaizrmih3kzwd3fmqpml"; 20 20 }) 21 21 (fetchNuGet { 22 - name = "System.Runtime.Handles"; 23 - version = "4.3.0"; 24 - sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; 22 + name = "microsoft.aspnetcore.mvc.newtonsoftjson"; 23 + version = "3.1.1"; 24 + sha256 = "1c2lrlp64kkacnjgdyygr6fqdawk10l8j4qgppii6rq61yjwhcig"; 25 25 }) 26 26 (fetchNuGet { 27 - name = "System.Dynamic.Runtime"; 28 - version = "4.0.11"; 29 - sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 27 + name = "microsoft.build"; 28 + version = "15.3.409"; 29 + sha256 = "0vzq6csp2yys9s96c7i37bjml439rdi47g8f5rzqdr7xf5a1jk81"; 30 30 }) 31 31 (fetchNuGet { 32 - name = "System.Threading.Overlapped"; 33 - version = "4.0.1"; 34 - sha256 = "0fi79az3vmqdp9mv3wh2phblfjls89zlj6p9nc3i9f6wmfarj188"; 32 + name = "microsoft.build.framework"; 33 + version = "15.3.409"; 34 + sha256 = "1dhanwb9ihbfay85xj7cwn0byzmmdz94hqfi3q6r1ncwdjd8y1s2"; 35 35 }) 36 36 (fetchNuGet { 37 - name = "System.Security.Principal"; 38 - version = "4.0.1"; 39 - sha256 = "1nbzdfqvzzbgsfdd5qsh94d7dbg2v4sw0yx6himyn52zf8z6007p"; 37 + name = "microsoft.build.runtime"; 38 + version = "15.3.409"; 39 + sha256 = "135ycnqz5jfg61y5zaapgc7xdpjx2aq4icmxb9ph7h5inl445q7q"; 40 40 }) 41 41 (fetchNuGet { 42 - name = "System.Private.DataContractSerialization"; 43 - version = "4.1.1"; 44 - sha256 = "1xk9wvgzipssp1393nsg4n16zbr5481k03nkdlj954hzq5jkx89r"; 42 + name = "microsoft.build.tasks.core"; 43 + version = "15.3.409"; 44 + sha256 = "135swyygp7cz2civwsz6a7dj7h8bzp7yrybmgxjanxwrw66hm933"; 45 45 }) 46 46 (fetchNuGet { 47 - name = "Microsoft.Win32.Registry"; 48 - version = "4.0.0"; 49 - sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k"; 47 + name = "microsoft.build.utilities.core"; 48 + version = "15.3.409"; 49 + sha256 = "1p8a0l9sxmjj86qha748qjw2s2n07q8mn41mj5r6apjnwl27ywnf"; 50 50 }) 51 51 (fetchNuGet { 52 - name = "System.Reflection.Emit"; 53 - version = "4.0.1"; 54 - sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 52 + name = "microsoft.csharp"; 53 + version = "4.3.0"; 54 + sha256 = "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb"; 55 55 }) 56 56 (fetchNuGet { 57 - name = "System.Reflection.Emit.Lightweight"; 58 - version = "4.0.1"; 59 - sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 57 + name = "microsoft.csharp"; 58 + version = "4.7.0"; 59 + sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; 60 60 }) 61 61 (fetchNuGet { 62 - name = "System.Reflection.Emit.ILGeneration"; 63 - version = "4.0.1"; 64 - sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 62 + name = "microsoft.extensions.apidescription.server"; 63 + version = "3.0.0"; 64 + sha256 = "13a47xcqyi5gz85swxd4mgp7ndgl4kknrvv3xwmbn71hsh953hsh"; 65 65 }) 66 66 (fetchNuGet { 67 - name = "System.Globalization.Extensions"; 68 - version = "4.0.1"; 69 - sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; 67 + name = "microsoft.extensions.fileproviders.abstractions"; 68 + version = "2.0.0"; 69 + sha256 = "0d6y5isjy6jpf4w3f3w89cwh9p40glzhwvm7cwhx05wkqd8bk9w4"; 70 70 }) 71 71 (fetchNuGet { 72 - name = "System.Diagnostics.DiagnosticSource"; 73 - version = "4.0.0"; 74 - sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; 72 + name = "microsoft.extensions.fileproviders.physical"; 73 + version = "2.0.0"; 74 + sha256 = "0l0l92g7sq4122n139av1pn1jl6wlw92hjmdnr47xdss0ndmwrs3"; 75 75 }) 76 76 (fetchNuGet { 77 - name = "System.Threading.Tasks.Extensions"; 78 - version = "4.0.0"; 79 - sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 77 + name = "microsoft.extensions.filesystemglobbing"; 78 + version = "2.0.0"; 79 + sha256 = "02lzy6r14ghwfwm384xajq08vv3pl3ww0mi5isrr10vivhijhgg4"; 80 80 }) 81 81 (fetchNuGet { 82 - name = "System.Security.Cryptography.Cng"; 83 - version = "4.2.0"; 84 - sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc"; 82 + name = "microsoft.extensions.logging.abstractions"; 83 + version = "1.0.0"; 84 + sha256 = "1sh9bidmhy32gkz6fkli79mxv06546ybrzppfw5v2aq0bda1ghka"; 85 85 }) 86 86 (fetchNuGet { 87 - name = "System.Security.Cryptography.Csp"; 88 - version = "4.0.0"; 89 - sha256 = "1cwv8lqj8r15q81d2pz2jwzzbaji0l28xfrpw29kdpsaypm92z2q"; 87 + name = "microsoft.extensions.primitives"; 88 + version = "2.0.0"; 89 + sha256 = "1xppr5jbny04slyjgngxjdm0maxdh47vq481ps944d7jrfs0p3mb"; 90 90 }) 91 91 (fetchNuGet { 92 - name = "Microsoft.VisualStudio.Web.CodeGeneration.Tools"; 93 - version = "2.0.2"; 94 - sha256 = "0fkjm06irs53d77z29i6dwj5pjhgj9ivhad8v39ghnrwasc0ivq6"; 92 + name = "microsoft.netcore.app"; 93 + version = "2.0.5"; 94 + sha256 = "0qb7k624w7l0zhapdp519ymqg84a67r8zyd8cpj42hywsgb0dqv6"; 95 95 }) 96 96 (fetchNuGet { 97 - name = "System.Security.Cryptography.OpenSsl"; 98 - version = "4.0.0"; 99 - sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q"; 97 + name = "microsoft.netcore.app.runtime.linux-x64"; 98 + version = "3.1.19"; 99 + sha256 = "10c9bq1z8j173n9jzamgplbxq101yscwdhksshn1ybisn7cr5g0h"; 100 100 }) 101 101 (fetchNuGet { 102 - name = "Microsoft.VisualStudio.Web.CodeGeneration.Contracts"; 103 - version = "2.0.2"; 104 - sha256 = "1fs6sbjn0chx6rv38d61zgk8mhyyxz44xp4wsfya0lvkckyszyn1"; 102 + name = "microsoft.netcore.dotnetapphost"; 103 + version = "2.0.5"; 104 + sha256 = "00bsxdg9c8msjxyffvfi8siqk8v2m7ca8fqy1npv7b2pzg3byjws"; 105 105 }) 106 106 (fetchNuGet { 107 - name = "runtime.native.System.Net.Http"; 108 - version = "4.0.1"; 109 - sha256 = "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6"; 107 + name = "microsoft.netcore.dotnethostpolicy"; 108 + version = "2.0.5"; 109 + sha256 = "0v5csskiwpk8kz8wclqad8kcjmxr7ik4w99wl05740qvaag3qysk"; 110 110 }) 111 111 (fetchNuGet { 112 - name = "Microsoft.Extensions.FileProviders.Physical"; 113 - version = "2.0.0"; 114 - sha256 = "0l0l92g7sq4122n139av1pn1jl6wlw92hjmdnr47xdss0ndmwrs3"; 112 + name = "microsoft.netcore.dotnethostresolver"; 113 + version = "2.0.5"; 114 + sha256 = "1sz2fdp8fdwz21x3lr2m1zhhrbix6iz699fjkwiryqdjl4ygd3hw"; 115 115 }) 116 116 (fetchNuGet { 117 - name = "runtime.native.System.IO.Compression"; 118 - version = "4.1.0"; 119 - sha256 = "0d720z4lzyfcabmmnvh0bnj76ll7djhji2hmfh3h44sdkjnlkknk"; 117 + name = "microsoft.netcore.platforms"; 118 + version = "1.0.1"; 119 + sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; 120 120 }) 121 121 (fetchNuGet { 122 - name = "Microsoft.NETCore.App"; 123 - version = "2.0.5"; 124 - sha256 = "0qb7k624w7l0zhapdp519ymqg84a67r8zyd8cpj42hywsgb0dqv6"; 122 + name = "microsoft.netcore.platforms"; 123 + version = "1.1.0"; 124 + sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; 125 125 }) 126 126 (fetchNuGet { 127 - name = "runtime.native.System.Security.Cryptography"; 128 - version = "4.0.0"; 129 - sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9"; 127 + name = "microsoft.netcore.platforms"; 128 + version = "2.0.1"; 129 + sha256 = "1j2hmnivgb4plni2dd205kafzg6mkg7r4knrd3s7mg75wn2l25np"; 130 130 }) 131 131 (fetchNuGet { 132 - name = "NuGet.Frameworks"; 133 - version = "4.0.0"; 134 - sha256 = "0nar684cm53cvzx28gzl6kmpg9mrfr1yv29323din7xqal4pscgq"; 132 + name = "microsoft.netcore.platforms"; 133 + version = "3.1.0"; 134 + sha256 = "1gc1x8f95wk8yhgznkwsg80adk1lc65v9n5rx4yaa4bc5dva0z3j"; 135 135 }) 136 136 (fetchNuGet { 137 - name = "Microsoft.Build.Runtime"; 138 - version = "15.3.409"; 139 - sha256 = "135ycnqz5jfg61y5zaapgc7xdpjx2aq4icmxb9ph7h5inl445q7q"; 137 + name = "microsoft.netcore.targets"; 138 + version = "1.0.1"; 139 + sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; 140 140 }) 141 141 (fetchNuGet { 142 - name = "runtime.native.System"; 143 - version = "4.0.0"; 144 - sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; 142 + name = "microsoft.netcore.targets"; 143 + version = "1.1.0"; 144 + sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; 145 145 }) 146 146 (fetchNuGet { 147 - name = "System.Buffers"; 148 - version = "4.0.0"; 149 - sha256 = "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr"; 147 + name = "microsoft.openapi"; 148 + version = "1.1.4"; 149 + sha256 = "1sn79829nhx6chi2qxsza1801di7zdl5fd983m0jakawzbjhjcb3"; 150 150 }) 151 151 (fetchNuGet { 152 - name = "Microsoft.NETCore.Targets"; 153 - version = "1.0.1"; 154 - sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; 152 + name = "microsoft.visualstudio.web.codegeneration.contracts"; 153 + version = "2.0.2"; 154 + sha256 = "1fs6sbjn0chx6rv38d61zgk8mhyyxz44xp4wsfya0lvkckyszyn1"; 155 155 }) 156 156 (fetchNuGet { 157 - name = "Newtonsoft.Json"; 158 - version = "10.0.1"; 159 - sha256 = "15ncqic3p2rzs8q8ppi0irl2miq75kilw4lh8yfgjq96id0ds3hv"; 157 + name = "microsoft.visualstudio.web.codegeneration.tools"; 158 + version = "2.0.2"; 159 + sha256 = "0fkjm06irs53d77z29i6dwj5pjhgj9ivhad8v39ghnrwasc0ivq6"; 160 160 }) 161 161 (fetchNuGet { 162 - name = "Microsoft.NETCore.DotNetAppHost"; 163 - version = "2.0.5"; 164 - sha256 = "00bsxdg9c8msjxyffvfi8siqk8v2m7ca8fqy1npv7b2pzg3byjws"; 162 + name = "microsoft.win32.primitives"; 163 + version = "4.0.1"; 164 + sha256 = "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7"; 165 165 }) 166 166 (fetchNuGet { 167 - name = "System.Runtime.CompilerServices.Unsafe"; 168 - version = "4.4.0"; 169 - sha256 = "0a6ahgi5b148sl5qyfpyw383p3cb4yrkm802k29fsi4mxkiwir29"; 167 + name = "microsoft.win32.registry"; 168 + version = "4.0.0"; 169 + sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k"; 170 170 }) 171 171 (fetchNuGet { 172 - name = "System.Reflection.Emit.Lightweight"; 173 - version = "4.3.0"; 174 - sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; 172 + name = "microsoft.win32.registry"; 173 + version = "4.7.0"; 174 + sha256 = "0bx21jjbs7l5ydyw4p6cn07chryxpmchq2nl5pirzz4l3b0q4dgs"; 175 175 }) 176 176 (fetchNuGet { 177 - name = "System.IO.FileSystem"; 178 - version = "4.3.0"; 179 - sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 177 + name = "nbitcoin"; 178 + version = "5.0.47"; 179 + sha256 = "1plri6q83jn80m95np0zxdg3nk2f36z8v42j4sg5wjv8qppp866d"; 180 180 }) 181 181 (fetchNuGet { 182 - name = "Microsoft.Extensions.FileSystemGlobbing"; 183 - version = "2.0.0"; 184 - sha256 = "02lzy6r14ghwfwm384xajq08vv3pl3ww0mi5isrr10vivhijhgg4"; 182 + name = "nbitcoin.secp256k1"; 183 + version = "1.0.3"; 184 + sha256 = "08d4db64j1qz8ax9fg8zi6n7g1n53clnkajbbvv2hgaqyfrsnqxj"; 185 185 }) 186 186 (fetchNuGet { 187 - name = "Microsoft.Extensions.FileProviders.Abstractions"; 188 - version = "2.0.0"; 189 - sha256 = "0d6y5isjy6jpf4w3f3w89cwh9p40glzhwvm7cwhx05wkqd8bk9w4"; 187 + name = "netstandard.library"; 188 + version = "1.6.0"; 189 + sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; 190 190 }) 191 191 (fetchNuGet { 192 - name = "Microsoft.NETCore.Platforms"; 192 + name = "netstandard.library"; 193 193 version = "2.0.1"; 194 - sha256 = "1j2hmnivgb4plni2dd205kafzg6mkg7r4knrd3s7mg75wn2l25np"; 194 + sha256 = "0d44wjxphs1ck838v7dapm0ag0b91zpiy33cr5vflsrwrqgj51dk"; 195 195 }) 196 196 (fetchNuGet { 197 - name = "Microsoft.NETCore.DotNetHostPolicy"; 198 - version = "2.0.5"; 199 - sha256 = "0v5csskiwpk8kz8wclqad8kcjmxr7ik4w99wl05740qvaag3qysk"; 197 + name = "newtonsoft.json"; 198 + version = "10.0.1"; 199 + sha256 = "15ncqic3p2rzs8q8ppi0irl2miq75kilw4lh8yfgjq96id0ds3hv"; 200 + }) 201 + (fetchNuGet { 202 + name = "newtonsoft.json"; 203 + version = "11.0.1"; 204 + sha256 = "1z68j07if1xf71lbsrgbia52r812i2dv541sy44ph4dzjjp7pd4m"; 200 205 }) 201 206 (fetchNuGet { 202 - name = "System.IO.FileSystem.Primitives"; 203 - version = "4.3.0"; 204 - sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; 207 + name = "newtonsoft.json"; 208 + version = "12.0.2"; 209 + sha256 = "0w2fbji1smd2y7x25qqibf1qrznmv4s6s0jvrbvr6alb7mfyqvh5"; 205 210 }) 206 211 (fetchNuGet { 207 - name = "NETStandard.Library"; 208 - version = "2.0.1"; 209 - sha256 = "0d44wjxphs1ck838v7dapm0ag0b91zpiy33cr5vflsrwrqgj51dk"; 212 + name = "newtonsoft.json.bson"; 213 + version = "1.0.2"; 214 + sha256 = "0c27bhy9x3c2n26inq32kmp6drpm71n6mqnmcr19wrlcaihglj35"; 210 215 }) 211 216 (fetchNuGet { 212 - name = "System.Threading.Tasks.Extensions"; 213 - version = "4.3.0"; 214 - sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 217 + name = "nuget.frameworks"; 218 + version = "4.0.0"; 219 + sha256 = "0nar684cm53cvzx28gzl6kmpg9mrfr1yv29323din7xqal4pscgq"; 215 220 }) 216 221 (fetchNuGet { 217 - name = "System.Collections.Specialized"; 218 - version = "4.3.0"; 219 - sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20"; 222 + name = "runtime.any.system.collections"; 223 + version = "4.0.11"; 224 + sha256 = "1x44bm1cgv28zmrp095wf9mn8a6a0ivnzp9v14dcbhx06igxzgg0"; 220 225 }) 221 226 (fetchNuGet { 222 - name = "System.ComponentModel"; 223 - version = "4.3.0"; 224 - sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb"; 227 + name = "runtime.any.system.diagnostics.tracing"; 228 + version = "4.1.0"; 229 + sha256 = "041im8hmp1zdgrx6jzyrdch6kshvbddmkar7r2mlm1ksb5c5kwpq"; 225 230 }) 226 231 (fetchNuGet { 227 - name = "System.Collections.NonGeneric"; 228 - version = "4.3.0"; 229 - sha256 = "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k"; 232 + name = "runtime.any.system.globalization"; 233 + version = "4.0.11"; 234 + sha256 = "0240rp66pi5bw1xklmh421hj7arwcdmjmgfkiq1cbc6nrm8ah286"; 230 235 }) 231 236 (fetchNuGet { 232 - name = "System.ComponentModel.Primitives"; 233 - version = "4.3.0"; 234 - sha256 = "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0"; 237 + name = "runtime.any.system.io"; 238 + version = "4.1.0"; 239 + sha256 = "0kasfkjiml2kk8prnyn1990nhsahnjggvqwszqjdsfwfl43vpcb5"; 235 240 }) 236 241 (fetchNuGet { 237 - name = "System.Runtime.InteropServices"; 238 - version = "4.3.0"; 239 - sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; 242 + name = "runtime.any.system.reflection"; 243 + version = "4.1.0"; 244 + sha256 = "06kcs059d5czyakx75rvlwa2mr86156w18fs7chd03f7084l7mq6"; 240 245 }) 241 246 (fetchNuGet { 242 - name = "NETStandard.Library"; 243 - version = "1.6.0"; 244 - sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; 247 + name = "runtime.any.system.reflection.primitives"; 248 + version = "4.0.1"; 249 + sha256 = "1zxrpvixr5fqzkxpnin6g6gjq6xajy1snghz99ds2dwbhm276rhz"; 245 250 }) 246 251 (fetchNuGet { 247 - name = "Microsoft.Build.Framework"; 248 - version = "15.3.409"; 249 - sha256 = "1dhanwb9ihbfay85xj7cwn0byzmmdz94hqfi3q6r1ncwdjd8y1s2"; 252 + name = "runtime.any.system.resources.resourcemanager"; 253 + version = "4.0.1"; 254 + sha256 = "1jmgs7hynb2rff48623wnyb37558bbh1q28k9c249j5r5sgsr5kr"; 250 255 }) 251 256 (fetchNuGet { 252 - name = "Microsoft.Build.Tasks.Core"; 253 - version = "15.3.409"; 254 - sha256 = "135swyygp7cz2civwsz6a7dj7h8bzp7yrybmgxjanxwrw66hm933"; 257 + name = "runtime.any.system.runtime"; 258 + version = "4.1.0"; 259 + sha256 = "0mjr2bi7wvnkphfjqgkyf8vfyvy15a829jz6mivl6jmksh2bx40m"; 255 260 }) 256 261 (fetchNuGet { 257 - name = "System.Text.Encoding.CodePages"; 262 + name = "runtime.any.system.runtime.handles"; 258 263 version = "4.0.1"; 259 - sha256 = "00wpm3b9y0k996rm9whxprngm8l500ajmzgy2ip9pgwk0icp06y3"; 264 + sha256 = "1kswgqhy34qvc49i981fk711s7knd6z13bp0rin8ms6axkh98nas"; 260 265 }) 261 266 (fetchNuGet { 262 - name = "Microsoft.Build.Utilities.Core"; 263 - version = "15.3.409"; 264 - sha256 = "1p8a0l9sxmjj86qha748qjw2s2n07q8mn41mj5r6apjnwl27ywnf"; 267 + name = "runtime.any.system.runtime.interopservices"; 268 + version = "4.1.0"; 269 + sha256 = "0gm8if0hcmp1qys1wmx4970k2x62pqvldgljsyzbjhiy5644vl8z"; 265 270 }) 266 271 (fetchNuGet { 267 - name = "Microsoft.Build"; 268 - version = "15.3.409"; 269 - sha256 = "0vzq6csp2yys9s96c7i37bjml439rdi47g8f5rzqdr7xf5a1jk81"; 272 + name = "runtime.any.system.text.encoding"; 273 + version = "4.0.11"; 274 + sha256 = "0m4vgmzi1ky8xlj0r7xcyazxln3j9dlialnk6d2gmgrfnzf8f9m7"; 270 275 }) 271 276 (fetchNuGet { 272 - name = "System.Runtime.Serialization.Formatters"; 273 - version = "4.3.0"; 274 - sha256 = "114j35n8gcvn3sqv9ar36r1jjq0y1yws9r0yk8i6wm4aq7n9rs0m"; 277 + name = "runtime.any.system.threading.tasks"; 278 + version = "4.0.11"; 279 + sha256 = "1qzdp09qs8br5qxzlm1lgbjn4n57fk8vr1lzrmli2ysdg6x1xzvk"; 275 280 }) 276 281 (fetchNuGet { 277 - name = "System.Runtime.Serialization.Primitives"; 278 - version = "4.3.0"; 279 - sha256 = "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf"; 282 + name = "runtime.native.system"; 283 + version = "4.0.0"; 284 + sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; 280 285 }) 281 286 (fetchNuGet { 282 - name = "System.ObjectModel"; 283 - version = "4.3.0"; 284 - sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 287 + name = "runtime.native.system.io.compression"; 288 + version = "4.1.0"; 289 + sha256 = "0d720z4lzyfcabmmnvh0bnj76ll7djhji2hmfh3h44sdkjnlkknk"; 285 290 }) 286 291 (fetchNuGet { 287 - name = "System.Diagnostics.Debug"; 288 - version = "4.3.0"; 289 - sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; 292 + name = "runtime.native.system.net.http"; 293 + version = "4.0.1"; 294 + sha256 = "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6"; 290 295 }) 291 296 (fetchNuGet { 292 - name = "System.Resources.ResourceManager"; 293 - version = "4.3.0"; 294 - sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; 297 + name = "runtime.native.system.security.cryptography"; 298 + version = "4.0.0"; 299 + sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9"; 295 300 }) 296 301 (fetchNuGet { 297 - name = "System.Reflection.Extensions"; 298 - version = "4.3.0"; 299 - sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; 302 + name = "runtime.unix.system.diagnostics.debug"; 303 + version = "4.0.11"; 304 + sha256 = "05ndbai4vpqrry0ghbfgqc8xblmplwjgndxmdn1zklqimczwjg2d"; 300 305 }) 301 306 (fetchNuGet { 302 - name = "System.Reflection.Emit"; 303 - version = "4.3.0"; 304 - sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; 307 + name = "runtime.unix.system.private.uri"; 308 + version = "4.0.1"; 309 + sha256 = "0ic5dgc45jkhcr1g9xmmzjm7ffiw4cymm0fprczlx4fnww4783nm"; 305 310 }) 306 311 (fetchNuGet { 307 - name = "System.Text.Encoding.Extensions"; 308 - version = "4.3.0"; 309 - sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; 312 + name = "runtime.unix.system.runtime.extensions"; 313 + version = "4.1.0"; 314 + sha256 = "0x1cwd7cvifzmn5x1wafvj75zdxlk3mxy860igh3x1wx0s8167y4"; 310 315 }) 311 316 (fetchNuGet { 312 - name = "System.Text.Encoding"; 313 - version = "4.3.0"; 314 - sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; 317 + name = "swashbuckle.aspnetcore"; 318 + version = "5.0.0"; 319 + sha256 = "0rn2awmzrsrppk97xbbwk4kq1mys9bygb5xhl6mphbk0hchrvh09"; 315 320 }) 316 321 (fetchNuGet { 317 - name = "System.Xml.XmlDocument"; 318 - version = "4.3.0"; 319 - sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; 322 + name = "swashbuckle.aspnetcore.swagger"; 323 + version = "5.0.0"; 324 + sha256 = "1341nv8nmh6avs3y7w2szzir5qd0bndxwrkdmvvj3hcxj1126w2f"; 320 325 }) 321 326 (fetchNuGet { 322 - name = "System.Reflection.Emit.ILGeneration"; 323 - version = "4.3.0"; 324 - sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; 327 + name = "swashbuckle.aspnetcore.swaggergen"; 328 + version = "5.0.0"; 329 + sha256 = "00swg2avqnb38q2bsxljd34n8rpknp74h9vbn0fdnfds3a32cqr4"; 325 330 }) 326 331 (fetchNuGet { 327 - name = "System.Runtime.Numerics"; 328 - version = "4.3.0"; 329 - sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 332 + name = "swashbuckle.aspnetcore.swaggerui"; 333 + version = "5.0.0"; 334 + sha256 = "0d7vjq489rz208j6k3rb7vq6mzxzff3mqg83yk2rqy25vklrsbjd"; 330 335 }) 331 336 (fetchNuGet { 332 - name = "System.Globalization"; 333 - version = "4.3.0"; 334 - sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; 337 + name = "system.appcontext"; 338 + version = "4.1.0"; 339 + sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; 335 340 }) 336 341 (fetchNuGet { 337 - name = "System.Reflection.TypeExtensions"; 338 - version = "4.3.0"; 339 - sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; 342 + name = "system.buffers"; 343 + version = "4.0.0"; 344 + sha256 = "13s659bcmg9nwb6z78971z1lr6bmh2wghxi1ayqyzl4jijd351gr"; 340 345 }) 341 346 (fetchNuGet { 342 - name = "System.Threading"; 343 - version = "4.3.0"; 344 - sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 347 + name = "system.collections"; 348 + version = "4.0.11"; 349 + sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; 345 350 }) 346 351 (fetchNuGet { 347 - name = "System.Reflection.Primitives"; 352 + name = "system.collections"; 348 353 version = "4.3.0"; 349 - sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; 354 + sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; 350 355 }) 351 356 (fetchNuGet { 352 - name = "System.Linq"; 353 - version = "4.3.0"; 354 - sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 357 + name = "system.collections.concurrent"; 358 + version = "4.0.12"; 359 + sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; 355 360 }) 356 361 (fetchNuGet { 357 - name = "System.Diagnostics.Tools"; 358 - version = "4.3.0"; 359 - sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 362 + name = "system.collections.immutable"; 363 + version = "1.2.0"; 364 + sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m"; 360 365 }) 361 366 (fetchNuGet { 362 - name = "Microsoft.NETCore.Targets"; 363 - version = "1.1.0"; 364 - sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; 367 + name = "system.collections.nongeneric"; 368 + version = "4.0.1"; 369 + sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d"; 365 370 }) 366 371 (fetchNuGet { 367 - name = "System.Collections"; 372 + name = "system.collections.nongeneric"; 368 373 version = "4.3.0"; 369 - sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; 374 + sha256 = "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k"; 370 375 }) 371 376 (fetchNuGet { 372 - name = "Microsoft.NETCore.Platforms"; 373 - version = "1.1.0"; 374 - sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; 375 - }) 376 - (fetchNuGet { 377 - name = "System.IO"; 377 + name = "system.collections.specialized"; 378 378 version = "4.3.0"; 379 - sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; 379 + sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20"; 380 380 }) 381 381 (fetchNuGet { 382 - name = "System.Threading.Tasks.Dataflow"; 383 - version = "4.6.0"; 384 - sha256 = "0a1davr71wssyn4z1hr75lk82wqa0daz0vfwkmg1fm3kckfd72k1"; 382 + name = "system.componentmodel"; 383 + version = "4.3.0"; 384 + sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb"; 385 385 }) 386 386 (fetchNuGet { 387 - name = "System.Xml.XDocument"; 387 + name = "system.componentmodel.primitives"; 388 388 version = "4.3.0"; 389 - sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 389 + sha256 = "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0"; 390 390 }) 391 391 (fetchNuGet { 392 - name = "System.IO.Pipes"; 393 - version = "4.0.0"; 394 - sha256 = "0fxfvcf55s9q8zsykwh8dkq2xb5jcqnml2ycq8srfry2l07h18za"; 392 + name = "system.componentmodel.typeconverter"; 393 + version = "4.3.0"; 394 + sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x"; 395 395 }) 396 396 (fetchNuGet { 397 - name = "System.Diagnostics.FileVersionInfo"; 397 + name = "system.console"; 398 398 version = "4.0.0"; 399 - sha256 = "1s5vxhy7i09bmw51kxqaiz9zaj9am8wsjyz13j85sp23z267hbv3"; 399 + sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; 400 400 }) 401 401 (fetchNuGet { 402 - name = "System.Threading.Tasks"; 403 - version = "4.3.0"; 404 - sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; 405 - }) 406 - (fetchNuGet { 407 - name = "System.Diagnostics.Contracts"; 402 + name = "system.diagnostics.contracts"; 408 403 version = "4.0.1"; 409 404 sha256 = "0y6dkd9n5k98vzhc3w14r2pbhf10qjn2axpghpmfr6rlxx9qrb9j"; 410 405 }) 411 406 (fetchNuGet { 412 - name = "System.Reflection"; 413 - version = "4.3.0"; 414 - sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; 407 + name = "system.diagnostics.debug"; 408 + version = "4.0.11"; 409 + sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 415 410 }) 416 411 (fetchNuGet { 417 - name = "System.Dynamic.Runtime"; 412 + name = "system.diagnostics.debug"; 418 413 version = "4.3.0"; 419 - sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; 414 + sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; 420 415 }) 421 416 (fetchNuGet { 422 - name = "System.Runtime.Loader"; 417 + name = "system.diagnostics.diagnosticsource"; 423 418 version = "4.0.0"; 424 - sha256 = "0lpfi3psqcp6zxsjk2qyahal7zaawviimc8lhrlswhip2mx7ykl0"; 419 + sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; 425 420 }) 426 421 (fetchNuGet { 427 - name = "System.Threading.ThreadPool"; 428 - version = "4.0.10"; 429 - sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; 422 + name = "system.diagnostics.fileversioninfo"; 423 + version = "4.0.0"; 424 + sha256 = "1s5vxhy7i09bmw51kxqaiz9zaj9am8wsjyz13j85sp23z267hbv3"; 430 425 }) 431 426 (fetchNuGet { 432 - name = "System.Runtime.Extensions"; 433 - version = "4.3.0"; 434 - sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; 427 + name = "system.diagnostics.process"; 428 + version = "4.1.0"; 429 + sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s"; 435 430 }) 436 431 (fetchNuGet { 437 - name = "System.Runtime.Serialization.Xml"; 438 - version = "4.1.1"; 439 - sha256 = "11747an5gbz821pwahaim3v82gghshnj9b5c4cw539xg5a3gq7rk"; 432 + name = "system.diagnostics.tools"; 433 + version = "4.0.1"; 434 + sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 440 435 }) 441 436 (fetchNuGet { 442 - name = "System.Text.RegularExpressions"; 437 + name = "system.diagnostics.tools"; 443 438 version = "4.3.0"; 444 - sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; 439 + sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 445 440 }) 446 441 (fetchNuGet { 447 - name = "System.Collections.Immutable"; 448 - version = "1.2.0"; 449 - sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m"; 442 + name = "system.diagnostics.tracesource"; 443 + version = "4.0.0"; 444 + sha256 = "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h"; 445 + }) 446 + (fetchNuGet { 447 + name = "system.diagnostics.tracing"; 448 + version = "4.1.0"; 449 + sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; 450 450 }) 451 451 (fetchNuGet { 452 - name = "Microsoft.CSharp"; 453 - version = "4.3.0"; 454 - sha256 = "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb"; 452 + name = "system.dynamic.runtime"; 453 + version = "4.0.11"; 454 + sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 455 455 }) 456 456 (fetchNuGet { 457 - name = "System.ComponentModel.TypeConverter"; 457 + name = "system.dynamic.runtime"; 458 458 version = "4.3.0"; 459 - sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x"; 459 + sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; 460 460 }) 461 461 (fetchNuGet { 462 - name = "System.Reflection.Metadata"; 463 - version = "1.3.0"; 464 - sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b"; 462 + name = "system.globalization"; 463 + version = "4.0.11"; 464 + sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; 465 465 }) 466 466 (fetchNuGet { 467 - name = "System.Xml.ReaderWriter"; 467 + name = "system.globalization"; 468 468 version = "4.3.0"; 469 - sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 469 + sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; 470 470 }) 471 471 (fetchNuGet { 472 - name = "System.Linq.Parallel"; 472 + name = "system.globalization.calendars"; 473 473 version = "4.0.1"; 474 - sha256 = "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad"; 474 + sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; 475 475 }) 476 476 (fetchNuGet { 477 - name = "System.Linq.Expressions"; 477 + name = "system.globalization.extensions"; 478 + version = "4.0.1"; 479 + sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; 480 + }) 481 + (fetchNuGet { 482 + name = "system.globalization.extensions"; 478 483 version = "4.3.0"; 479 - sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; 484 + sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; 480 485 }) 481 486 (fetchNuGet { 482 - name = "System.Diagnostics.Process"; 487 + name = "system.io"; 483 488 version = "4.1.0"; 484 - sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s"; 489 + sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; 485 490 }) 486 491 (fetchNuGet { 487 - name = "System.Runtime"; 492 + name = "system.io"; 488 493 version = "4.3.0"; 489 - sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; 494 + sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; 490 495 }) 491 496 (fetchNuGet { 492 - name = "System.Xml.XmlDocument"; 497 + name = "system.io.compression"; 498 + version = "4.1.0"; 499 + sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; 500 + }) 501 + (fetchNuGet { 502 + name = "system.io.compression.zipfile"; 493 503 version = "4.0.1"; 494 - sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; 504 + sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82"; 495 505 }) 496 506 (fetchNuGet { 497 - name = "Microsoft.Extensions.Primitives"; 498 - version = "2.0.0"; 499 - sha256 = "1xppr5jbny04slyjgngxjdm0maxdh47vq481ps944d7jrfs0p3mb"; 507 + name = "system.io.filesystem"; 508 + version = "4.0.1"; 509 + sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 500 510 }) 501 511 (fetchNuGet { 502 - name = "Microsoft.NETCore.DotNetHostResolver"; 503 - version = "2.0.5"; 504 - sha256 = "1sz2fdp8fdwz21x3lr2m1zhhrbix6iz699fjkwiryqdjl4ygd3hw"; 512 + name = "system.io.filesystem"; 513 + version = "4.3.0"; 514 + sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 505 515 }) 506 516 (fetchNuGet { 507 - name = "System.Runtime.Serialization.Primitives"; 508 - version = "4.1.1"; 509 - sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; 517 + name = "system.io.filesystem.primitives"; 518 + version = "4.0.1"; 519 + sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; 510 520 }) 511 521 (fetchNuGet { 512 - name = "Microsoft.NETCore.Platforms"; 513 - version = "1.0.1"; 514 - sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; 522 + name = "system.io.filesystem.primitives"; 523 + version = "4.3.0"; 524 + sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; 515 525 }) 516 526 (fetchNuGet { 517 - name = "System.AppContext"; 518 - version = "4.1.0"; 519 - sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; 527 + name = "system.io.pipes"; 528 + version = "4.0.0"; 529 + sha256 = "0fxfvcf55s9q8zsykwh8dkq2xb5jcqnml2ycq8srfry2l07h18za"; 520 530 }) 521 531 (fetchNuGet { 522 - name = "System.Diagnostics.Debug"; 523 - version = "4.0.11"; 524 - sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 532 + name = "system.linq"; 533 + version = "4.1.0"; 534 + sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 525 535 }) 526 536 (fetchNuGet { 527 - name = "System.Diagnostics.TraceSource"; 528 - version = "4.0.0"; 529 - sha256 = "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h"; 537 + name = "system.linq"; 538 + version = "4.3.0"; 539 + sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 530 540 }) 531 541 (fetchNuGet { 532 - name = "System.Resources.ResourceManager"; 533 - version = "4.0.1"; 534 - sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; 542 + name = "system.linq.expressions"; 543 + version = "4.1.0"; 544 + sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 535 545 }) 536 546 (fetchNuGet { 537 - name = "System.Globalization.Calendars"; 538 - version = "4.0.1"; 539 - sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; 547 + name = "system.linq.expressions"; 548 + version = "4.3.0"; 549 + sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; 540 550 }) 541 551 (fetchNuGet { 542 - name = "System.Xml.XPath"; 552 + name = "system.linq.parallel"; 543 553 version = "4.0.1"; 544 - sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; 554 + sha256 = "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad"; 545 555 }) 546 556 (fetchNuGet { 547 - name = "System.Diagnostics.Tools"; 548 - version = "4.0.1"; 549 - sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 557 + name = "system.net.http"; 558 + version = "4.1.0"; 559 + sha256 = "1i5rqij1icg05j8rrkw4gd4pgia1978mqhjzhsjg69lvwcdfg8yb"; 550 560 }) 551 561 (fetchNuGet { 552 - name = "System.Text.Encoding.Extensions"; 562 + name = "system.net.primitives"; 553 563 version = "4.0.11"; 554 - sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 564 + sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; 555 565 }) 556 566 (fetchNuGet { 557 - name = "System.Diagnostics.Tracing"; 567 + name = "system.net.sockets"; 558 568 version = "4.1.0"; 559 - sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; 569 + sha256 = "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls"; 560 570 }) 561 571 (fetchNuGet { 562 - name = "System.Resources.Writer"; 563 - version = "4.0.0"; 564 - sha256 = "07hp218kjdcvpl27djspnixgnacbp9apma61zz3wsca9fx5g3lmv"; 572 + name = "system.objectmodel"; 573 + version = "4.0.12"; 574 + sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 565 575 }) 566 576 (fetchNuGet { 567 - name = "System.Reflection.TypeExtensions"; 568 - version = "4.1.0"; 569 - sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; 577 + name = "system.objectmodel"; 578 + version = "4.3.0"; 579 + sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 570 580 }) 571 581 (fetchNuGet { 572 - name = "System.Collections.NonGeneric"; 582 + name = "system.private.datacontractserialization"; 583 + version = "4.1.1"; 584 + sha256 = "1xk9wvgzipssp1393nsg4n16zbr5481k03nkdlj954hzq5jkx89r"; 585 + }) 586 + (fetchNuGet { 587 + name = "system.private.uri"; 573 588 version = "4.0.1"; 574 - sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d"; 589 + sha256 = "0k57qhawjysm4cpbfpc49kl4av7lji310kjcamkl23bwgij5ld9j"; 575 590 }) 576 591 (fetchNuGet { 577 - name = "System.Console"; 578 - version = "4.0.0"; 579 - sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; 592 + name = "system.reflection"; 593 + version = "4.1.0"; 594 + sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; 580 595 }) 581 596 (fetchNuGet { 582 - name = "System.Security.Cryptography.Primitives"; 583 - version = "4.0.0"; 584 - sha256 = "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh"; 597 + name = "system.reflection"; 598 + version = "4.3.0"; 599 + sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; 585 600 }) 586 601 (fetchNuGet { 587 - name = "System.Runtime.Numerics"; 602 + name = "system.reflection.emit"; 588 603 version = "4.0.1"; 589 - sha256 = "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn"; 604 + sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 590 605 }) 591 606 (fetchNuGet { 592 - name = "Microsoft.Win32.Primitives"; 593 - version = "4.0.1"; 594 - sha256 = "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7"; 607 + name = "system.reflection.emit"; 608 + version = "4.3.0"; 609 + sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; 595 610 }) 596 611 (fetchNuGet { 597 - name = "System.IO.Compression.ZipFile"; 612 + name = "system.reflection.emit.ilgeneration"; 598 613 version = "4.0.1"; 599 - sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82"; 614 + sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 600 615 }) 601 616 (fetchNuGet { 602 - name = "System.Xml.XPath.XmlDocument"; 603 - version = "4.0.1"; 604 - sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc"; 617 + name = "system.reflection.emit.ilgeneration"; 618 + version = "4.3.0"; 619 + sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; 605 620 }) 606 621 (fetchNuGet { 607 - name = "System.Net.Sockets"; 608 - version = "4.1.0"; 609 - sha256 = "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls"; 622 + name = "system.reflection.emit.lightweight"; 623 + version = "4.0.1"; 624 + sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 610 625 }) 611 626 (fetchNuGet { 612 - name = "System.Xml.XDocument"; 613 - version = "4.0.11"; 614 - sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 627 + name = "system.reflection.emit.lightweight"; 628 + version = "4.3.0"; 629 + sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; 615 630 }) 616 631 (fetchNuGet { 617 - name = "System.Reflection.Extensions"; 632 + name = "system.reflection.extensions"; 618 633 version = "4.0.1"; 619 634 sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; 620 635 }) 621 636 (fetchNuGet { 622 - name = "System.Runtime.InteropServices.RuntimeInformation"; 623 - version = "4.0.0"; 624 - sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6"; 637 + name = "system.reflection.extensions"; 638 + version = "4.3.0"; 639 + sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; 625 640 }) 626 641 (fetchNuGet { 627 - name = "System.Resources.Reader"; 628 - version = "4.0.0"; 629 - sha256 = "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril"; 642 + name = "system.reflection.metadata"; 643 + version = "1.3.0"; 644 + sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b"; 630 645 }) 631 646 (fetchNuGet { 632 - name = "System.Threading.Thread"; 633 - version = "4.0.0"; 634 - sha256 = "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc"; 647 + name = "system.reflection.primitives"; 648 + version = "4.0.1"; 649 + sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; 635 650 }) 636 651 (fetchNuGet { 637 - name = "System.Threading.Timer"; 638 - version = "4.0.1"; 639 - sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; 652 + name = "system.reflection.primitives"; 653 + version = "4.3.0"; 654 + sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; 640 655 }) 641 656 (fetchNuGet { 642 - name = "System.IO.FileSystem.Primitives"; 643 - version = "4.0.1"; 644 - sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; 657 + name = "system.reflection.typeextensions"; 658 + version = "4.1.0"; 659 + sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; 645 660 }) 646 661 (fetchNuGet { 647 - name = "System.IO.FileSystem"; 648 - version = "4.0.1"; 649 - sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 662 + name = "system.reflection.typeextensions"; 663 + version = "4.3.0"; 664 + sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; 650 665 }) 651 666 (fetchNuGet { 652 - name = "System.Security.Cryptography.Encoding"; 667 + name = "system.resources.reader"; 653 668 version = "4.0.0"; 654 - sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; 669 + sha256 = "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril"; 655 670 }) 656 671 (fetchNuGet { 657 - name = "System.Runtime"; 658 - version = "4.1.0"; 659 - sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; 660 - }) 661 - (fetchNuGet { 662 - name = "System.Security.Cryptography.Algorithms"; 663 - version = "4.2.0"; 664 - sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; 665 - }) 666 - (fetchNuGet { 667 - name = "System.Reflection.Primitives"; 672 + name = "system.resources.resourcemanager"; 668 673 version = "4.0.1"; 669 - sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; 674 + sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; 670 675 }) 671 676 (fetchNuGet { 672 - name = "System.Runtime.Handles"; 673 - version = "4.0.1"; 674 - sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; 677 + name = "system.resources.resourcemanager"; 678 + version = "4.3.0"; 679 + sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; 675 680 }) 676 681 (fetchNuGet { 677 - name = "System.ObjectModel"; 678 - version = "4.0.12"; 679 - sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 682 + name = "system.resources.writer"; 683 + version = "4.0.0"; 684 + sha256 = "07hp218kjdcvpl27djspnixgnacbp9apma61zz3wsca9fx5g3lmv"; 680 685 }) 681 686 (fetchNuGet { 682 - name = "System.Net.Primitives"; 683 - version = "4.0.11"; 684 - sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; 687 + name = "system.runtime"; 688 + version = "4.1.0"; 689 + sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; 685 690 }) 686 691 (fetchNuGet { 687 - name = "System.Text.Encoding"; 688 - version = "4.0.11"; 689 - sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; 692 + name = "system.runtime"; 693 + version = "4.3.0"; 694 + sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; 690 695 }) 691 696 (fetchNuGet { 692 - name = "System.Collections.Concurrent"; 693 - version = "4.0.12"; 694 - sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; 697 + name = "system.runtime.compilerservices.unsafe"; 698 + version = "4.4.0"; 699 + sha256 = "0a6ahgi5b148sl5qyfpyw383p3cb4yrkm802k29fsi4mxkiwir29"; 695 700 }) 696 701 (fetchNuGet { 697 - name = "System.IO.Compression"; 702 + name = "system.runtime.extensions"; 698 703 version = "4.1.0"; 699 - sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; 704 + sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; 700 705 }) 701 706 (fetchNuGet { 702 - name = "System.IO"; 703 - version = "4.1.0"; 704 - sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; 707 + name = "system.runtime.extensions"; 708 + version = "4.3.0"; 709 + sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; 705 710 }) 706 711 (fetchNuGet { 707 - name = "System.Reflection"; 708 - version = "4.1.0"; 709 - sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; 712 + name = "system.runtime.handles"; 713 + version = "4.0.1"; 714 + sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; 710 715 }) 711 716 (fetchNuGet { 712 - name = "System.Collections"; 713 - version = "4.0.11"; 714 - sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; 717 + name = "system.runtime.handles"; 718 + version = "4.3.0"; 719 + sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; 715 720 }) 716 721 (fetchNuGet { 717 - name = "System.Linq"; 722 + name = "system.runtime.interopservices"; 718 723 version = "4.1.0"; 719 - sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 724 + sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; 720 725 }) 721 726 (fetchNuGet { 722 - name = "System.Globalization"; 723 - version = "4.0.11"; 724 - sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; 727 + name = "system.runtime.interopservices"; 728 + version = "4.3.0"; 729 + sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; 725 730 }) 726 731 (fetchNuGet { 727 - name = "System.Threading"; 728 - version = "4.0.11"; 729 - sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; 732 + name = "system.runtime.interopservices.runtimeinformation"; 733 + version = "4.0.0"; 734 + sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6"; 730 735 }) 731 736 (fetchNuGet { 732 - name = "System.Text.RegularExpressions"; 733 - version = "4.1.0"; 734 - sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 737 + name = "system.runtime.loader"; 738 + version = "4.0.0"; 739 + sha256 = "0lpfi3psqcp6zxsjk2qyahal7zaawviimc8lhrlswhip2mx7ykl0"; 735 740 }) 736 741 (fetchNuGet { 737 - name = "System.Security.Cryptography.X509Certificates"; 738 - version = "4.1.0"; 739 - sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh"; 742 + name = "system.runtime.numerics"; 743 + version = "4.0.1"; 744 + sha256 = "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn"; 740 745 }) 741 746 (fetchNuGet { 742 - name = "System.Xml.ReaderWriter"; 743 - version = "4.0.11"; 744 - sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; 747 + name = "system.runtime.numerics"; 748 + version = "4.3.0"; 749 + sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 745 750 }) 746 751 (fetchNuGet { 747 - name = "System.Net.Http"; 748 - version = "4.1.0"; 749 - sha256 = "1i5rqij1icg05j8rrkw4gd4pgia1978mqhjzhsjg69lvwcdfg8yb"; 752 + name = "system.runtime.serialization.formatters"; 753 + version = "4.3.0"; 754 + sha256 = "114j35n8gcvn3sqv9ar36r1jjq0y1yws9r0yk8i6wm4aq7n9rs0m"; 750 755 }) 751 756 (fetchNuGet { 752 - name = "System.Runtime.Extensions"; 753 - version = "4.1.0"; 754 - sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; 757 + name = "system.runtime.serialization.primitives"; 758 + version = "4.1.1"; 759 + sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; 755 760 }) 756 761 (fetchNuGet { 757 - name = "System.Threading.Tasks"; 758 - version = "4.0.11"; 759 - sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; 762 + name = "system.runtime.serialization.primitives"; 763 + version = "4.3.0"; 764 + sha256 = "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf"; 760 765 }) 761 766 (fetchNuGet { 762 - name = "System.Linq.Expressions"; 763 - version = "4.1.0"; 764 - sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 767 + name = "system.runtime.serialization.xml"; 768 + version = "4.1.1"; 769 + sha256 = "11747an5gbz821pwahaim3v82gghshnj9b5c4cw539xg5a3gq7rk"; 765 770 }) 766 771 (fetchNuGet { 767 - name = "System.Runtime.InteropServices"; 768 - version = "4.1.0"; 769 - sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; 772 + name = "system.security.accesscontrol"; 773 + version = "4.7.0"; 774 + sha256 = "0n0k0w44flkd8j0xw7g3g3vhw7dijfm51f75xkm1qxnbh4y45mpz"; 770 775 }) 771 776 (fetchNuGet { 772 - name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; 773 - version = "3.1.8"; 774 - sha256 = "140zr3nwkmf6xc52gq4iz6ycyh95fxy0jpgn637pkd9z423z8135"; 777 + name = "system.security.cryptography.algorithms"; 778 + version = "4.2.0"; 779 + sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; 775 780 }) 776 781 (fetchNuGet { 777 - name = "Microsoft.NETCore.App.Runtime.linux-x64"; 778 - version = "3.1.8"; 779 - sha256 = "1bv9n9wzsqf9g8h6z10p61xkcx8ad4nnip83qv8yyfvhr4kdmbsa"; 782 + name = "system.security.cryptography.cng"; 783 + version = "4.2.0"; 784 + sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc"; 780 785 }) 781 786 (fetchNuGet { 782 - name = "Microsoft.CSharp"; 783 - version = "4.7.0"; 784 - sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; 787 + name = "system.security.cryptography.csp"; 788 + version = "4.0.0"; 789 + sha256 = "1cwv8lqj8r15q81d2pz2jwzzbaji0l28xfrpw29kdpsaypm92z2q"; 785 790 }) 786 791 (fetchNuGet { 787 - name = "Microsoft.NETCore.Platforms"; 788 - version = "3.1.0"; 789 - sha256 = "1gc1x8f95wk8yhgznkwsg80adk1lc65v9n5rx4yaa4bc5dva0z3j"; 792 + name = "system.security.cryptography.encoding"; 793 + version = "4.0.0"; 794 + sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; 790 795 }) 791 796 (fetchNuGet { 792 - name = "Newtonsoft.Json"; 793 - version = "11.0.1"; 794 - sha256 = "1z68j07if1xf71lbsrgbia52r812i2dv541sy44ph4dzjjp7pd4m"; 797 + name = "system.security.cryptography.openssl"; 798 + version = "4.0.0"; 799 + sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q"; 795 800 }) 796 801 (fetchNuGet { 797 - name = "Microsoft.Extensions.Logging.Abstractions"; 798 - version = "1.0.0"; 799 - sha256 = "1sh9bidmhy32gkz6fkli79mxv06546ybrzppfw5v2aq0bda1ghka"; 802 + name = "system.security.cryptography.primitives"; 803 + version = "4.0.0"; 804 + sha256 = "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh"; 800 805 }) 801 806 (fetchNuGet { 802 - name = "Newtonsoft.Json.Bson"; 803 - version = "1.0.2"; 804 - sha256 = "0c27bhy9x3c2n26inq32kmp6drpm71n6mqnmcr19wrlcaihglj35"; 807 + name = "system.security.cryptography.x509certificates"; 808 + version = "4.1.0"; 809 + sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh"; 805 810 }) 806 811 (fetchNuGet { 807 - name = "Microsoft.AspNetCore.JsonPatch"; 808 - version = "3.1.1"; 809 - sha256 = "0c0aaz9rlh9chc53dnv5jryp0x0415hipaizrmih3kzwd3fmqpml"; 812 + name = "system.security.principal"; 813 + version = "4.0.1"; 814 + sha256 = "1nbzdfqvzzbgsfdd5qsh94d7dbg2v4sw0yx6himyn52zf8z6007p"; 810 815 }) 811 816 (fetchNuGet { 812 - name = "Newtonsoft.Json"; 813 - version = "12.0.2"; 814 - sha256 = "0w2fbji1smd2y7x25qqibf1qrznmv4s6s0jvrbvr6alb7mfyqvh5"; 815 - }) 816 - (fetchNuGet { 817 - name = "System.Security.Principal.Windows"; 817 + name = "system.security.principal.windows"; 818 818 version = "4.7.0"; 819 819 sha256 = "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d"; 820 820 }) 821 821 (fetchNuGet { 822 - name = "System.Security.AccessControl"; 823 - version = "4.7.0"; 824 - sha256 = "0n0k0w44flkd8j0xw7g3g3vhw7dijfm51f75xkm1qxnbh4y45mpz"; 822 + name = "system.text.encoding"; 823 + version = "4.0.11"; 824 + sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; 825 825 }) 826 826 (fetchNuGet { 827 - name = "NBitcoin"; 828 - version = "5.0.47"; 829 - sha256 = "1plri6q83jn80m95np0zxdg3nk2f36z8v42j4sg5wjv8qppp866d"; 827 + name = "system.text.encoding"; 828 + version = "4.3.0"; 829 + sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; 830 830 }) 831 831 (fetchNuGet { 832 - name = "Microsoft.AspNetCore.Mvc.NewtonsoftJson"; 833 - version = "3.1.1"; 834 - sha256 = "1c2lrlp64kkacnjgdyygr6fqdawk10l8j4qgppii6rq61yjwhcig"; 832 + name = "system.text.encoding.codepages"; 833 + version = "4.0.1"; 834 + sha256 = "00wpm3b9y0k996rm9whxprngm8l500ajmzgy2ip9pgwk0icp06y3"; 835 835 }) 836 836 (fetchNuGet { 837 - name = "Microsoft.Win32.Registry"; 838 - version = "4.7.0"; 839 - sha256 = "0bx21jjbs7l5ydyw4p6cn07chryxpmchq2nl5pirzz4l3b0q4dgs"; 837 + name = "system.text.encoding.extensions"; 838 + version = "4.0.11"; 839 + sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 840 840 }) 841 841 (fetchNuGet { 842 - name = "NBitcoin.Secp256k1"; 843 - version = "1.0.3"; 844 - sha256 = "08d4db64j1qz8ax9fg8zi6n7g1n53clnkajbbvv2hgaqyfrsnqxj"; 842 + name = "system.text.encoding.extensions"; 843 + version = "4.3.0"; 844 + sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; 845 845 }) 846 846 (fetchNuGet { 847 - name = "Microsoft.OpenApi"; 848 - version = "1.1.4"; 849 - sha256 = "1sn79829nhx6chi2qxsza1801di7zdl5fd983m0jakawzbjhjcb3"; 847 + name = "system.text.regularexpressions"; 848 + version = "4.1.0"; 849 + sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 850 850 }) 851 851 (fetchNuGet { 852 - name = "Swashbuckle.AspNetCore.SwaggerUI"; 853 - version = "5.0.0"; 854 - sha256 = "0d7vjq489rz208j6k3rb7vq6mzxzff3mqg83yk2rqy25vklrsbjd"; 852 + name = "system.text.regularexpressions"; 853 + version = "4.3.0"; 854 + sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; 855 855 }) 856 856 (fetchNuGet { 857 - name = "Swashbuckle.AspNetCore"; 858 - version = "5.0.0"; 859 - sha256 = "0rn2awmzrsrppk97xbbwk4kq1mys9bygb5xhl6mphbk0hchrvh09"; 857 + name = "system.threading"; 858 + version = "4.0.11"; 859 + sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; 860 860 }) 861 861 (fetchNuGet { 862 - name = "Swashbuckle.AspNetCore.SwaggerGen"; 863 - version = "5.0.0"; 864 - sha256 = "00swg2avqnb38q2bsxljd34n8rpknp74h9vbn0fdnfds3a32cqr4"; 862 + name = "system.threading"; 863 + version = "4.3.0"; 864 + sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 865 865 }) 866 866 (fetchNuGet { 867 - name = "Microsoft.Extensions.ApiDescription.Server"; 868 - version = "3.0.0"; 869 - sha256 = "13a47xcqyi5gz85swxd4mgp7ndgl4kknrvv3xwmbn71hsh953hsh"; 867 + name = "system.threading.overlapped"; 868 + version = "4.0.1"; 869 + sha256 = "0fi79az3vmqdp9mv3wh2phblfjls89zlj6p9nc3i9f6wmfarj188"; 870 870 }) 871 871 (fetchNuGet { 872 - name = "Swashbuckle.AspNetCore.Swagger"; 873 - version = "5.0.0"; 874 - sha256 = "1341nv8nmh6avs3y7w2szzir5qd0bndxwrkdmvvj3hcxj1126w2f"; 872 + name = "system.threading.tasks"; 873 + version = "4.0.11"; 874 + sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; 875 875 }) 876 876 (fetchNuGet { 877 - name = "runtime.unix.System.Private.Uri"; 878 - version = "4.0.1"; 879 - sha256 = "0ic5dgc45jkhcr1g9xmmzjm7ffiw4cymm0fprczlx4fnww4783nm"; 877 + name = "system.threading.tasks"; 878 + version = "4.3.0"; 879 + sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; 880 880 }) 881 881 (fetchNuGet { 882 - name = "runtime.any.System.Text.Encoding"; 883 - version = "4.0.11"; 884 - sha256 = "0m4vgmzi1ky8xlj0r7xcyazxln3j9dlialnk6d2gmgrfnzf8f9m7"; 882 + name = "system.threading.tasks.dataflow"; 883 + version = "4.6.0"; 884 + sha256 = "0a1davr71wssyn4z1hr75lk82wqa0daz0vfwkmg1fm3kckfd72k1"; 885 885 }) 886 886 (fetchNuGet { 887 - name = "System.Private.Uri"; 888 - version = "4.0.1"; 889 - sha256 = "0k57qhawjysm4cpbfpc49kl4av7lji310kjcamkl23bwgij5ld9j"; 887 + name = "system.threading.tasks.extensions"; 888 + version = "4.0.0"; 889 + sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 890 890 }) 891 891 (fetchNuGet { 892 - name = "runtime.any.System.Runtime.Handles"; 893 - version = "4.0.1"; 894 - sha256 = "1kswgqhy34qvc49i981fk711s7knd6z13bp0rin8ms6axkh98nas"; 892 + name = "system.threading.tasks.extensions"; 893 + version = "4.3.0"; 894 + sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 895 895 }) 896 896 (fetchNuGet { 897 - name = "runtime.any.System.Reflection.Primitives"; 898 - version = "4.0.1"; 899 - sha256 = "1zxrpvixr5fqzkxpnin6g6gjq6xajy1snghz99ds2dwbhm276rhz"; 897 + name = "system.threading.thread"; 898 + version = "4.0.0"; 899 + sha256 = "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc"; 900 900 }) 901 901 (fetchNuGet { 902 - name = "runtime.any.System.IO"; 903 - version = "4.1.0"; 904 - sha256 = "0kasfkjiml2kk8prnyn1990nhsahnjggvqwszqjdsfwfl43vpcb5"; 902 + name = "system.threading.threadpool"; 903 + version = "4.0.10"; 904 + sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; 905 905 }) 906 906 (fetchNuGet { 907 - name = "runtime.any.System.Runtime"; 908 - version = "4.1.0"; 909 - sha256 = "0mjr2bi7wvnkphfjqgkyf8vfyvy15a829jz6mivl6jmksh2bx40m"; 907 + name = "system.threading.timer"; 908 + version = "4.0.1"; 909 + sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; 910 910 }) 911 911 (fetchNuGet { 912 - name = "runtime.any.System.Threading.Tasks"; 912 + name = "system.xml.readerwriter"; 913 913 version = "4.0.11"; 914 - sha256 = "1qzdp09qs8br5qxzlm1lgbjn4n57fk8vr1lzrmli2ysdg6x1xzvk"; 914 + sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; 915 915 }) 916 916 (fetchNuGet { 917 - name = "runtime.any.System.Diagnostics.Tracing"; 918 - version = "4.1.0"; 919 - sha256 = "041im8hmp1zdgrx6jzyrdch6kshvbddmkar7r2mlm1ksb5c5kwpq"; 917 + name = "system.xml.readerwriter"; 918 + version = "4.3.0"; 919 + sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 920 920 }) 921 921 (fetchNuGet { 922 - name = "runtime.unix.System.Runtime.Extensions"; 923 - version = "4.1.0"; 924 - sha256 = "0x1cwd7cvifzmn5x1wafvj75zdxlk3mxy860igh3x1wx0s8167y4"; 922 + name = "system.xml.xdocument"; 923 + version = "4.0.11"; 924 + sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 925 925 }) 926 926 (fetchNuGet { 927 - name = "runtime.any.System.Runtime.InteropServices"; 928 - version = "4.1.0"; 929 - sha256 = "0gm8if0hcmp1qys1wmx4970k2x62pqvldgljsyzbjhiy5644vl8z"; 927 + name = "system.xml.xdocument"; 928 + version = "4.3.0"; 929 + sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 930 930 }) 931 931 (fetchNuGet { 932 - name = "runtime.any.System.Reflection"; 933 - version = "4.1.0"; 934 - sha256 = "06kcs059d5czyakx75rvlwa2mr86156w18fs7chd03f7084l7mq6"; 932 + name = "system.xml.xmldocument"; 933 + version = "4.0.1"; 934 + sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; 935 935 }) 936 936 (fetchNuGet { 937 - name = "runtime.any.System.Collections"; 938 - version = "4.0.11"; 939 - sha256 = "1x44bm1cgv28zmrp095wf9mn8a6a0ivnzp9v14dcbhx06igxzgg0"; 937 + name = "system.xml.xmldocument"; 938 + version = "4.3.0"; 939 + sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; 940 940 }) 941 941 (fetchNuGet { 942 - name = "runtime.any.System.Globalization"; 942 + name = "system.xml.xmlserializer"; 943 943 version = "4.0.11"; 944 - sha256 = "0240rp66pi5bw1xklmh421hj7arwcdmjmgfkiq1cbc6nrm8ah286"; 944 + sha256 = "01nzc3gdslw90qfykq4qzr2mdnqxjl4sj0wp3fixiwdmlmvpib5z"; 945 945 }) 946 946 (fetchNuGet { 947 - name = "runtime.any.System.Resources.ResourceManager"; 947 + name = "system.xml.xpath"; 948 948 version = "4.0.1"; 949 - sha256 = "1jmgs7hynb2rff48623wnyb37558bbh1q28k9c249j5r5sgsr5kr"; 949 + sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; 950 950 }) 951 951 (fetchNuGet { 952 - name = "runtime.unix.System.Diagnostics.Debug"; 953 - version = "4.0.11"; 954 - sha256 = "05ndbai4vpqrry0ghbfgqc8xblmplwjgndxmdn1zklqimczwjg2d"; 952 + name = "system.xml.xpath.xmldocument"; 953 + version = "4.0.1"; 954 + sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc"; 955 955 }) 956 956 ]
+3 -3
pkgs/applications/editors/emacs/elisp-packages/agda2-mode/default.nix
··· 4 4 5 5 trivialBuild rec { 6 6 pname = "agda-mode"; 7 - version = pkgs.haskellPackages.Agda.version; 7 + version = haskellPackages.Agda.version; 8 8 9 9 dontUnpack = true; 10 10 11 11 # already byte-compiled by Agda builder 12 12 buildPhase = '' 13 - agda=`${pkgs.haskellPackages.Agda}/bin/agda-mode locate` 13 + agda=`${haskellPackages.Agda}/bin/agda-mode locate` 14 14 cp `dirname $agda`/*.el* . 15 15 ''; 16 16 17 17 meta = { 18 - inherit (pkgs.haskellPackages.Agda.meta) homepage license; 18 + inherit (haskellPackages.Agda.meta) homepage license; 19 19 description = "Agda2-mode for Emacs extracted from Agda package"; 20 20 longDescription = '' 21 21 Wrapper packages that liberates init.el from `agda-mode locate` magic.
+1
pkgs/applications/editors/emacs/elisp-packages/ess-R-object-popup/default.nix
··· 1 1 { lib 2 2 , trivialBuild 3 3 , fetchFromGitHub 4 + , emacs 4 5 }: 5 6 6 7 trivialBuild rec {
+1 -2
pkgs/applications/editors/emacs/elisp-packages/evil-markdown/default.nix
··· 2 2 , trivialBuild 3 3 , fetchFromGitHub 4 4 , emacs 5 - , emacsPackages 6 5 }: 7 6 8 7 trivialBuild rec { ··· 20 19 emacs 21 20 ] ++ propagatedUserEnvPkgs; 22 21 23 - propagatedUserEnvPkgs = with emacsPackages; [ 22 + propagatedUserEnvPkgs = with emacs.pkgs; [ 24 23 evil 25 24 markdown-mode 26 25 ];
+1
pkgs/applications/editors/emacs/elisp-packages/git-undo/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , emacs 5 + , trivialBuild 5 6 }: 6 7 7 8 trivialBuild {
+1
pkgs/applications/editors/emacs/elisp-packages/isearch-prop/default.nix
··· 1 1 { lib 2 2 , stdenv 3 + , fetchFromGitHub 3 4 , trivialBuild 4 5 , emacs 5 6 }:
+1 -1
pkgs/applications/editors/emacs/elisp-packages/prolog/default.nix
··· 6 6 7 7 src = fetchurl { 8 8 url = "http://bruda.ca/_media/emacs/prolog.el"; 9 - sha256 = "oCMzks4xuor8Il8Ll8PXh1zIvMl5qN0RCFJ9yKiHOHU="; 9 + sha256 = "ZzIDFQWPq1vI9z3btgsHgn0axN6uRQn9Tt8TnqGybOk="; 10 10 }; 11 11 12 12 buildCommand = ''
+1
pkgs/applications/editors/emacs/elisp-packages/youtube-dl/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , trivialBuild 4 5 , emacs 5 6 }: 6 7
+21 -1
pkgs/applications/editors/neovim/tests.nix
··· 87 87 nvim_with_plug = neovim.override { 88 88 extraName = "-with-plug"; 89 89 configure.plug.plugins = with pkgs.vimPlugins; [ 90 - vim-go 90 + base16-vim 91 91 ]; 92 + configure.customRC = '' 93 + color base16-tomorrow-night 94 + set background=dark 95 + ''; 92 96 }; 97 + 98 + run_nvim_with_plug = runTest nvim_with_plug '' 99 + export HOME=$TMPDIR 100 + ${nvim_with_plug}/bin/nvim -i NONE -c 'color base16-tomorrow-night' +quit! 101 + ''; 102 + 103 + 104 + # check that the vim-doc hook correctly generates the tag 105 + # we know for a fact packer has a doc folder 106 + checkForTags = vimPlugins.packer-nvim.overrideAttrs(oldAttrs: { 107 + doInstallCheck = true; 108 + installCheckPhase = '' 109 + [ -f $out/doc/tags ] 110 + ''; 111 + }); 112 + 93 113 94 114 # nixpkgs should detect that no wrapping is necessary 95 115 nvimShouldntWrap = wrapNeovim2 "-should-not-wrap" nvimAutoDisableWrap;
+2 -2
pkgs/applications/misc/cherrytree/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "cherrytree"; 22 - version = "0.99.40"; 22 + version = "0.99.41"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "giuspen"; 26 26 repo = "cherrytree"; 27 27 rev = version; 28 - sha256 = "sha256-K1rf8/7kEpfLOPYJGh5U2eTnr5XCDhuc+seoUAKW7aE="; 28 + sha256 = "sha256-Bhk5xpJiVDSTxP1wAFTL39MgAIOa6Is9NTF1WEh6S1A="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+3 -3
pkgs/applications/misc/joplin-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "joplin-desktop"; 5 - version = "2.3.5"; 5 + version = "2.4.6"; 6 6 name = "${pname}-${version}"; 7 7 8 8 inherit (stdenv.hostPlatform) system; ··· 16 16 src = fetchurl { 17 17 url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.${suffix}"; 18 18 sha256 = { 19 - x86_64-linux = "sha256-Qy/CpIEfAZ9735mwcNaJIw+qVmYXVwQ7gJuUj2lpQc4="; 20 - x86_64-darwin = "sha256-7I+fhcFFW/WihuUkSE5Pc8RhKszSgByP58H3sKSJbrc="; 19 + x86_64-linux = "sha256-BMpRWtfx5fXEJy3hp/+q86sd+Yd/QPJbSqi2nWE2dcQ="; 20 + x86_64-darwin = "sha256-4UNKdoGtQSN5/m+xQZrY77ZE5A7jvpDOUCRvwrS5e6g="; 21 21 }.${system} or throwSystem; 22 22 }; 23 23
+3 -3
pkgs/applications/networking/cluster/kubeone/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubeone"; 9 - version = "1.2.3"; 9 + version = "1.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "kubermatic"; 13 13 repo = "kubeone"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-oInE8fwE+7a+F4NevKPuYQqCP9GkPhqayLu8HCmVbLs="; 15 + sha256 = "sha256-B/ga5MpjXoLe5H/JosmrS/Wuj1elzQHPsnz/qOm7Hrg="; 16 16 }; 17 17 18 - vendorSha256 = "sha256-VvO5YnDofdEku9+RC6PPHWSZY8qZt9N3JNzlm5omNAc="; 18 + vendorSha256 = "sha256-/rhV7JHuqejCTizcjKIkaJlbRcx7AfMcGqQYo6dlg48="; 19 19 20 20 nativeBuildInputs = [ 21 21 installShellFiles
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 27 27 pname = "discord-canary"; 28 28 binaryName = "DiscordCanary"; 29 29 desktopName = "Discord Canary"; 30 - version = "0.0.129"; 30 + version = "0.0.130"; 31 31 src = fetchurl { 32 32 url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; 33 - sha256 = "sha256:1x49vvd363w9xyrzjgmynj2b320hzpz388fh5vpp0q0qk8q3gwkk"; 33 + sha256 = "sha256-UamSiwjR68Pfm3uyHaI871VaGwIKJ5DShl8uE3rvX+U="; 34 34 }; 35 35 }; 36 36 }.${branch}
+21 -41
pkgs/applications/science/electronics/alliance/default.nix
··· 1 - { lib, stdenv, fetchurl 2 - , xorgproto, motif, libX11, libXt, libXpm, bison 3 - , flex, automake, autoconf, libtool, runtimeShell 1 + { lib, stdenv, fetchFromGitLab, xorgproto, motif, libX11, libXt, libXpm, bison 2 + , flex, automake, autoconf, libtool 4 3 }: 5 4 6 5 stdenv.mkDerivation rec { 7 6 pname = "alliance"; 8 - version = "5.1.1"; 7 + version = "unstable-2021-09-15"; 9 8 10 - src = fetchurl { 11 - url = "http://www-asim.lip6.fr/pub/alliance/distribution/5.0/${pname}-${version}.tar.bz2"; 12 - sha256 = "046c9qwl1vbww0ljm4xyxf5jpz9nq62b2q0wdz9xjimgh4c207w1"; 9 + src = fetchFromGitLab { 10 + domain = "gitlab.lip6.fr"; 11 + owner = "vlsi-eda"; 12 + repo = "alliance"; 13 + rev = "5e83c92d0307cce9d599f7099fb0023f81d26d65"; 14 + sha256 = "Vd3MTT4eKn4FMt0/F4fQUPcWq25kH0FpeGxQUOetKPY="; 13 15 }; 14 16 17 + prePatch = "cd alliance/src"; 15 18 16 19 nativeBuildInputs = [ libtool automake autoconf flex ]; 17 20 buildInputs = [ xorgproto motif libX11 libXt libXpm bison ]; 18 21 19 - sourceRoot = "alliance/src/"; 22 + ALLIANCE_TOP = placeholder "out"; 20 23 21 24 configureFlags = [ 22 - "--prefix=$(out)" 25 + "--prefix=${placeholder "out"}" "--enable-alc-shared" 23 26 ]; 24 27 25 - preConfigure = '' 26 - mkdir -p $out/etc 27 - 28 - #texlive for docs seems extreme 29 - mkdir -p $out/share/alliance 30 - mv ./documentation $out/share/alliance 28 + postPatch = '' 29 + # texlive for docs seems extreme 31 30 substituteInPlace autostuff \ 32 - --replace "$newdirs documentation" "$newdirs" \ 33 - --replace documentation Solaris 31 + --replace "$newdirs documentation" "$newdirs" 34 32 35 - substituteInPlace sea/src/DEF_grammar_lex.l \ 36 - --replace "ifndef FLEX_BETA" "if (YY_FLEX_MAJOR_VERSION <= 2) && (YY_FLEX_MINOR_VERSION < 6)" 37 - ./autostuff 38 - ''; 33 + substituteInPlace sea/src/DEF_grammar_lex.l --replace "ifndef FLEX_BETA" \ 34 + "if (YY_FLEX_MAJOR_VERSION <= 2) && (YY_FLEX_MINOR_VERSION < 6)" 39 35 40 - allianceInstaller = '' 41 - #!${runtimeShell} 42 - cp -v -r -n --no-preserve=mode $out/etc/* /etc/ > /etc/alliance-install.log 43 - ''; 44 - 45 - allianceUnInstaller = '' 46 - #!${runtimeShell} 47 - awk '{print \$3}' /etc/alliance-install.log | xargs rm 48 - awk '{print \$3}' /etc/alliance-install.log | xargs rmdir 49 - rm /etc/alliance-install.log 36 + ./autostuff 50 37 ''; 51 38 52 39 postInstall = '' ··· 55 42 cp -p distrib/*.desktop $out/share/applications/ 56 43 mkdir -p $out/icons/hicolor/48x48/apps/ 57 44 cp -p distrib/*.png $out/icons/hicolor/48x48/apps/ 58 - 59 - echo "${allianceInstaller}" > $out/bin/alliance-install 60 - chmod +x $out/bin/alliance-install 61 - 62 - echo "${allianceUnInstaller}" > $out/bin/alliance-uninstall 63 - chmod +x $out/bin/alliance-uninstall 64 45 ''; 65 46 66 47 meta = with lib; { 67 - description = "Complete set of free CAD tools and portable libraries for VLSI design"; 68 - homepage = "http://www-asim.lip6.fr/recherche/alliance/"; 48 + description = "(deprecated) Complete set of free CAD tools and portable libraries for VLSI design"; 49 + homepage = "http://coriolis.lip6.fr/"; 69 50 license = with licenses; gpl2Plus; 70 - maintainers = with maintainers; [ ]; 51 + maintainers = with maintainers; [ l-as ]; 71 52 platforms = with platforms; linux; 72 - broken = true; 73 53 }; 74 54 }
+3 -3
pkgs/applications/version-management/verco/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "verco"; 5 - version = "6.4.0"; 5 + version = "6.5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vamolessa"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "09lkgqrv5wfpg7q5mqaiar93jp8gz8ys84hy7jhn1mvjml3zlbnx"; 11 + sha256 = "sha256-n+GGiu/xGGGC6FQPoASok87bCG0MFVIf6l6nt1lvw8A="; 12 12 }; 13 13 14 - cargoSha256 = "04ddhhyad5cd3mg1yzx7mhr0g5mqfnmx9y0li82yx9wnv9br5qn6"; 14 + cargoSha256 = "sha256-lNtR4N+bFFCr3Ct99DJCbtDeKxTzT7ZjvAWixbQm3jg="; 15 15 16 16 meta = with lib; { 17 17 description = "A simple Git/Mercurial/PlasticSCM tui client based on keyboard shortcuts";
+1 -1
pkgs/build-support/bintools-wrapper/default.nix
··· 327 327 ### 328 328 ### Remove LC_UUID 329 329 ### 330 - + optionalString (stdenv.targetPlatform.isDarwin && !(stdenv.cc.bintools.bintools.isGNU or false)) '' 330 + + optionalString (stdenv.targetPlatform.isDarwin && !(bintools.isGNU or false)) '' 331 331 echo "-no_uuid" >> $out/nix-support/libc-ldflags-before 332 332 '' 333 333
-4
pkgs/desktops/lxqt/lxqt-config/default.nix
··· 51 51 xorg.xf86inputlibinput.dev 52 52 ]; 53 53 54 - postPatch = '' 55 - sed -i "/\''${XORG_LIBINPUT_INCLUDE_DIRS}/a ${xorg.xf86inputlibinput.dev}/include/xorg" lxqt-config-input/CMakeLists.txt 56 - ''; 57 - 58 54 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 59 55 60 56 meta = with lib; {
-6
pkgs/desktops/plasma-5/plasma-desktop/default.nix
··· 40 40 sed '1i#include <cmath>' -i kcms/touchpad/backends/x11/synapticstouchpad.cpp 41 41 ''; 42 42 CXXFLAGS = [ 43 - "-I${lib.getDev xorgserver}/include/xorg" 44 - "-I${lib.getDev xf86inputsynaptics}/include/xorg" 45 43 ''-DNIXPKGS_HWCLOCK=\"${lib.getBin util-linux}/sbin/hwclock\"'' 46 - ]; 47 - cmakeFlags = [ 48 - "-DEvdev_INCLUDE_DIRS=${lib.getDev xf86inputevdev}/include/xorg" 49 - "-DXORGLIBINPUT_INCLUDE_DIRS=${lib.getDev xf86inputlibinput}/include/xorg" 50 44 ]; 51 45 postInstall = '' 52 46 # Display ~/Desktop contents on the desktop by default.
+24 -24
pkgs/development/compilers/dotnet/default.nix
··· 80 80 # v3.1.1 (LTS) 81 81 82 82 aspnetcore_3_1 = buildAspNetCore { 83 - version = "3.1.8"; 83 + version = "3.1.19"; 84 84 sha512 = { 85 - x86_64-linux = "0i3dqsmh5x2aaagw30zvr0ydmzms5j6xvmwq0yx79r1hncw0zg8w1zq7cxvaddszl13d24wxb8vm4varkiv3fy8z3n2ndmhlqa2qcyw"; 86 - aarch64-linux = "3f3xky7jqpqwnsg730ka1576ppsspi25xlqsrqmwlbanad0r89lidfppr34nsys9gb5f1vx1zkv73dn4jhl6yawnas9j9f8nhi5mq40"; 87 - x86_64-darwin = "1gbiizljh80m9sqv4ynvch7si55if43f4ccfd9ynakwm777fddbg8py338l7irnxc5rid3xzw7c0yj5p8f22n38krlxkvr1zcwij68b"; 85 + x86_64-linux = "c9234b5dba62c88b5f7e869c7dc7fc94d9cd7b300b0ed2461132c32762c0d3d1f23a1ee0432264704fefeb35f77ca7d1dd41910daee84df9aa325559a43cfc71"; 86 + aarch64-linux = "4cba9b43a9beb977bb50c290c0e7cbbf42664538609079dd1bc0e925a0cc4a1f76748492d4d0d402610ae910e878449bab5d797a9f12e63399585b11f9bfbee9"; 87 + x86_64-darwin = "a30959156c818d8d93df398742a70a050decfddbd777ddd6adb4d3c1aa5ed129545eab8f0aa3f12be991611dbc3582336ed747f3075906a2a29a1cd30ef3ad90"; 88 88 }; 89 89 }; 90 90 91 91 netcore_3_1 = buildNetCore { 92 - version = "3.1.8"; 92 + version = "3.1.19"; 93 93 sha512 = { 94 - x86_64-linux = "19gbb92lkfwmx4ic27v5g4cs8qzxiq8cv7sw9pxa8kibgr7lgifvg8dh3pd0i30a78yg5lc3fsdy0jal5i2k049nak72rfhxhrk5yxc"; 95 - aarch64-linux = "0h0zfj82wafk6brmh35ah1qfxgxs4nm3wc47i14vhvkg78rz25w46rnah88zf9gkllnbhfxkw1ivcl4mm6l4ri9hv9367rr627hybvf"; 96 - x86_64-darwin = "0zcp77lh6rvj1vlnjnnd9gqrwazn9v572l0x6r7b9pkjjq7fdh5cnjcc1cvkv9rb00mssd9jjv7yjdpv4i8i9hwby85g9bn500qx42c"; 94 + x86_64-linux = "2cf268cc13bb4739203a18a9160aac58f2088e8ec275b1f7ef2fe2b74bc16edfdfbeb886a74fc9421edbf2899fa9e3ee7ea2734a83b1800b4a9848fb7e10bbbe"; 95 + aarch64-linux = "c6a97bc6e2f2644d57d3fa5a512274b7129956371b07e0f39f734875b15bc0c178a9b068e2fa3e06e8a3a6696163ad1856f5d87a689612211ee02e589138110e"; 96 + x86_64-darwin = "41ae9bc0212247c4721f41be384dae620971360c09fa31430f062c2ab851f10506ef620bf63ee414819b5dd20ddae8a1ce581bbe0d699378b244375e0822bd34"; 97 97 }; 98 98 }; 99 99 100 100 sdk_3_1 = buildNetCoreSdk { 101 - version = "3.1.402"; 101 + version = "3.1.413"; 102 102 sha512 = { 103 - x86_64-linux = "2zdb5cl4swg7kvnla6kgnnwg3kkb3rj2ccizg43fw89h8nacr1klz3zdl5km9l553lvm364dy8xsdwm79bw1ch0qgff6snnbbxlw5a2"; 104 - aarch64-linux = "1aq8fhsn15362x99dfp72m67zbswrg30xscy1n983mmq76qn5ha6sy8pyj84l7qcs0n1b7akb77qyi3d2ns8bd2wl6s1dacl24gn10p"; 105 - x86_64-darwin = "1gk6sgd9gdc6nr64mdfj6lhzdi6ixi5c1r0i1b7bhkg2xycx5cnbgjycrpqh17h6wbp68dz4mkg5hf1y3527hdwypa9k0sqdg3yrdb8"; 103 + x86_64-linux = "2a0824f11aba0b79d3f9a36af0395649bc9b4137e61b240a48dccb671df0a5b8c2086054f8e495430b7ed6c344bb3f27ac3dfda5967d863718a6dadeca951a83"; 104 + aarch64-linux = "39f198f07577faf81f09ca621fb749d5aac38fc05e7e6bd6226009679abc7d001454068430ddb34b320901955f42de3951e2707e01bce825b5216df2bc0c8eca"; 105 + x86_64-darwin = "2c8e5b7e578aa36d40946d0deea93dff72a68ebb5504b1593d86d63022be8b65b284cf2adad711a926b7170fc865ac4cb38531a4f2ef087e07147e67300e86b8"; 106 106 }; 107 107 }; 108 108 109 109 # v5.0.0 110 110 111 111 aspnetcore_5_0 = buildAspNetCore { 112 - version = "5.0.0"; 112 + version = "5.0.10"; 113 113 sha512 = { 114 - x86_64-linux = "402046ee144915ef7d75a788cf19552eea56cf897681721b74bfc403fd366f71eb7e56f6b83ea299b6b812c6b87378c15e7bfe249415427dcd147dfeacd084d0"; 115 - aarch64-linux = "13e174de1cf10135531468c2a76852de2c37253f4d8b487ff25d249c2d7a1c590475545ca246515338baff2950422ec6c5ffe2180e8327f25cb5f9fede696ccc"; 116 - x86_64-darwin = "b47a9958f5412b22edb2cb47702ad442c389901ede3ca2a7f75d901f8ed608494431849f498c2191327065ff1db52a1658b1a8c0feb53aaec4c814fb0baf6818"; 114 + x86_64-linux = "60fd41e42e07a96416baf2dd7ea8112a7c7d510bc6f4656274981777d2cf5e824cd519924cdf06215338d74e78cdc7801e1b24c39b3d67cd2d1b3c6fee6474a9"; 115 + aarch64-linux = "e86dd5b26e5add2f35c3a029c78e3c447755a319c105d371da297f66db5eff260f3f55ccf23e508e9a33536876708ac2e358dc62a4a28518f88df3a9131adb01"; 116 + x86_64-darwin = "124abacba27e26249d265d51fd7abc7ab0bed9859ce3a6a8e4f193031bff3f28dd81af639542b0cc043a3957e2a90a2f5b41c6ec6b4a50a4cb8fce12bc8654f9"; 117 117 }; 118 118 }; 119 119 120 120 net_5_0 = buildNetCore { 121 - version = "5.0.0"; 121 + version = "5.0.10"; 122 122 sha512 = { 123 - x86_64-linux = "d4d67df5ff5f6dde0d865a6e87559955bd57429df396cf7d05fe77f09e6220c67dc5e66439b1801ca4d301a62f81f666122bf4b623b31a46b861677dcafc62a4"; 124 - aarch64-linux = "c7a5ae2bd4e0edbd3b681c2997ebf1633bfa1cd30a4333cb63fc9945b4e7c9278282516fb5bc22c710ce6fb59dc2e28230c07b0e99826165fa148406ab8afb0f"; 125 - x86_64-darwin = "eba97211e158a0c1c15b03a79b42027319d83456dc377a2513c32defb560cd43fcfa1e84154a43243b77ca6b454c4dbc32be4153f0ba9c954c7b1e69ab5d7c53"; 123 + x86_64-linux = "421b00d5751381e6bf829dcba8fa0d781f0efd065be492739d60a4bef2b7b362dbec77fa3289e2ee45cab40616f95318fc214699ffe2f33aa15e77c2d163841c"; 124 + aarch64-linux = "30861f2bd41fcd7c1d657be1eafa09f22886af0c3e09d1854c626b675a469347ce9fb79b2ea92b5ed4e2fd3d3457766ac03fc5393a690099e1d2b9b15f3334b9"; 125 + x86_64-darwin = "2839f4fafa1f85a90b43a74a4898cbba915324f7363f1716e58cb9163d1415fa4d360703e27d0cadfe8495a370ccddbcfcc514076a880d6343a0bff76bb5ac2a"; 126 126 }; 127 127 }; 128 128 129 129 sdk_5_0 = buildNetCoreSdk { 130 - version = "5.0.202"; 130 + version = "5.0.401"; 131 131 sha512 = { 132 - x86_64-linux = "Ae1Z8jYYSYdAVnPSSUDVXOKdgw59u8GVVv3AOJMDnmBGcS3m+QHcmREEeg3uT9FTGbfpT4ox32uYH6Nb2T2YOA=="; 133 - aarch64-linux = "JuwSWgY35xrK0gOGR034mhAemulIkhtd4M00P0vA6EtOeyMY4Vl4cj6zudMh6Jt5DD8EJKQ8KbABX8byuePp2Q=="; 134 - x86_64-darwin = "jxnfTbQUb0dJ2/NX2pu8Pi/F/e4EaDm2Ta5U+6sSYj/s6nNp6NHxtEn7BzhQ9/EVLszl/oXi3lL0d/BPbzldEA=="; 132 + x86_64-linux = "a444d44007709ceb68d8f72dec0531e17f85f800efc0007ace4fa66ba27f095066930e6c6defcd2f85cdedea2fec25e163f5da461c1c2b8563e5cd7cb47091e0"; 133 + aarch64-linux = "770dcf18c08cd285934af61bedc06ffcc16a74115d15376f72376cdfbb4ab9cc9f53537ca1fe5d906b4b3c30b960ffe1404d6f7e01254091b4b9d288e9e972fa"; 134 + x86_64-darwin = "eca773f407314123fd5b2017f68520c0647651f53e546583c4145b596c230c42898b3e56355cd5ace76b793df4aca3cd7ff9142718c86eedeabbabb70b393d0e"; 135 135 }; 136 136 }; 137 137 }
+3 -3
pkgs/development/compilers/roslyn/deps.nix
··· 137 137 } 138 138 { 139 139 name = "microsoft.netcore.app.host.linux-x64"; 140 - version = "3.1.14"; 140 + version = "3.1.19"; 141 141 src = fetchurl { 142 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.14/microsoft.netcore.app.host.linux-x64.3.1.14.nupkg"; 143 - sha256 = "11rqnascx9asfyxgxzwgxgr9gxxndm552k4dn4p1s57ciz7vkg9h"; 142 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/45bacae2-5efb-47c8-91e5-8ec20c22b4f8/nuget/v3/flat2/microsoft.netcore.app.host.linux-x64/3.1.19/microsoft.netcore.app.host.linux-x64.3.1.19.nupkg"; 143 + sha256 = "10fs93kg8vhhm1l05815m8yqz796i6gk824pk1bps239mshmkybr"; 144 144 }; 145 145 } 146 146 {
+4 -4
pkgs/development/dotnet-modules/python-language-server/deps.nix
··· 48 48 49 49 (fetchNuGet { 50 50 name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; 51 - version = "3.1.8"; 52 - sha256 = "140zr3nwkmf6xc52gq4iz6ycyh95fxy0jpgn637pkd9z423z8135"; 51 + version = "3.1.19"; 52 + sha256 = "19z4zrchaxcz0a33c33n1qd11z9khj4323nfzsbzah0xxkkj8ka8"; 53 53 }) 54 54 55 55 (fetchNuGet { ··· 78 78 79 79 (fetchNuGet { 80 80 name = "Microsoft.NetCore.App.Runtime.linux-x64"; 81 - version = "3.1.8"; 82 - sha256 = "1bv9n9wzsqf9g8h6z10p61xkcx8ad4nnip83qv8yyfvhr4kdmbsa"; 81 + version = "3.1.19"; 82 + sha256 = "10c9bq1z8j173n9jzamgplbxq101yscwdhksshn1ybisn7cr5g0h"; 83 83 }) 84 84 85 85 (fetchNuGet {
+2 -2
pkgs/development/dotnet-modules/python-language-server/manual_deps.txt
··· 1 - Microsoft.AspNetCore.App.Runtime.linux-x64 3.1.8 2 - Microsoft.NetCore.App.Runtime.linux-x64 3.1.8 1 + Microsoft.AspNetCore.App.Runtime.linux-x64 3.1.19 2 + Microsoft.NetCore.App.Runtime.linux-x64 3.1.19
+1
pkgs/development/haskell-modules/configuration-common.nix
··· 212 212 command-qq = dontCheck super.command-qq; # http://hydra.cryp.to/build/499042/log/raw 213 213 conduit-connection = dontCheck super.conduit-connection; 214 214 craftwerk = dontCheck super.craftwerk; 215 + crc = dontCheck super.crc; # https://github.com/MichaelXavier/crc/issues/2 215 216 css-text = dontCheck super.css-text; 216 217 damnpacket = dontCheck super.damnpacket; # http://hydra.cryp.to/build/496923/log 217 218 data-hash = dontCheck super.data-hash;
-1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 843 843 - Craft3e 844 844 - craftwerk 845 845 - crawlchain 846 - - crc 847 846 - crc16 848 847 - crdt-event-fold 849 848 - creatur
-2
pkgs/development/haskell-modules/hackage-packages.nix
··· 65881 65881 benchmarkHaskellDepends = [ base bytestring criterion ]; 65882 65882 description = "Implements various Cyclic Redundancy Checks (CRC)"; 65883 65883 license = lib.licenses.mit; 65884 - hydraPlatforms = lib.platforms.none; 65885 - broken = true; 65886 65884 }) {}; 65887 65885 65888 65886 "crc16" = callPackage
+2 -2
pkgs/development/libraries/ceres-solver/default.nix
··· 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake ]; 23 - buildInputs = [ eigen glog ] 24 - ++ lib.optional runTests gflags; 23 + buildInputs = lib.optional runTests gflags; 24 + propagatedBuildInputs = [ eigen glog ]; 25 25 26 26 # The Basel BUILD file conflicts with the cmake build directory on 27 27 # case-insensitive filesystems, eg. darwin.
+38 -22
pkgs/development/libraries/glm/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchzip, cmake }: 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.9.8.5"; 4 + version = "0.9.9.8"; 5 5 pname = "glm"; 6 6 7 - src = fetchzip { 8 - url = "https://github.com/g-truc/glm/releases/download/${version}/${pname}-${version}.zip"; 9 - sha256 = "0dkfj4hin3am9fxgcvwr5gj0h9y52x7wa03lfwb3q0bvaj1rsly2"; 7 + src = fetchFromGitHub { 8 + owner = "g-truc"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "sha256-F//+3L5Ozrw6s7t4LrcUmO7sN30ZSESdrPAYX57zgr8="; 10 12 }; 11 13 14 + outputs = [ "out" "doc" ]; 15 + 12 16 nativeBuildInputs = [ cmake ]; 13 17 14 - outputs = [ "out" "doc" ]; 18 + cmakeFlags = [ 19 + "-DBUILD_SHARED_LIBS=OFF" 20 + "-DBUILD_STATIC_LIBS=OFF" 21 + "-DGLM_TEST_ENABLE=${if doCheck then "ON" else "OFF"}" 22 + ]; 15 23 16 - cmakeConfigureFlags = [ "-DGLM_INSTALL_ENABLE=off" ]; 24 + doCheck = true; 17 25 18 - # fetch newer version of platform.h which correctly supports gcc 7.3 19 - gcc7PlatformPatch = fetchurl { 20 - url = "https://raw.githubusercontent.com/g-truc/glm/384dab02e45a8ad3c1a3fa0906e0d5682c5b27b9/glm/simd/platform.h"; 21 - sha256 = "0ym0sgwznxhfyi014xs55x3ql7r65fjs34sqb5jiaffkdhkqgzia"; 22 - }; 26 + installPhase = '' 27 + runHook preInstall 23 28 24 - postPatch = '' 25 - substituteInPlace CMakeLists.txt \ 26 - --replace '"''${CMAKE_CURRENT_BINARY_DIR}/''${GLM_INSTALL_CONFIGDIR}' '"''${GLM_INSTALL_CONFIGDIR}' 27 - cp ${gcc7PlatformPatch} glm/simd/platform.h 28 - ''; 29 + # Install header-only library 30 + mkdir -p $out/include 31 + cp -rv ../glm $out/include 32 + rm $out/include/glm/CMakeLists.txt 33 + rm $out/include/glm/detail/*.cpp 29 34 30 - NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-DGLM_COMPILER=0"; 35 + # Install CMake files 36 + mkdir -p $out/lib 37 + cp -rv ../cmake $out/lib 38 + substituteInPlace $out/lib/cmake/glm/glmConfig.cmake \ 39 + --replace 'GLM_INCLUDE_DIRS ''${_IMPORT_PREFIX}' "GLM_INCLUDE_DIRS $out/include" 31 40 32 - postInstall = '' 41 + # Install pkg-config file 42 + mkdir -p $out/lib/pkgconfig 43 + substituteAll ${./glm.pc.in} $out/lib/pkgconfig/glm.pc 44 + 45 + # Install docs 33 46 mkdir -p $doc/share/doc/glm 34 - cp -rv $NIX_BUILD_TOP/$sourceRoot/doc/* $doc/share/doc/glm 47 + cp -rv ../doc/api $doc/share/doc/glm/html 48 + cp -v ../doc/manual.pdf $doc/share/doc/glm 49 + 50 + runHook postInstall 35 51 ''; 36 52 37 53 meta = with lib; { ··· 41 57 graphics software based on the OpenGL Shading Language (GLSL) 42 58 specification and released under the MIT license. 43 59 ''; 44 - homepage = "http://glm.g-truc.net/"; 60 + homepage = "https://github.com/g-truc/glm"; 45 61 license = licenses.mit; 46 62 platforms = platforms.unix; 47 - maintainers = with lib.maintainers; [ ]; 63 + maintainers = with maintainers; [ smancill ]; 48 64 }; 49 65 } 50 66
+7
pkgs/development/libraries/glm/glm.pc.in
··· 1 + prefix=@out@ 2 + includedir=@out@/include 3 + 4 + Name: GLM 5 + Description: OpenGL Mathematics 6 + Version: @version@ 7 + Cflags: -I${includedir}
+2 -2
pkgs/development/libraries/vc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "Vc"; 5 - version = "1.4.1"; 5 + version = "1.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "VcDevel"; 9 9 repo = "Vc"; 10 10 rev = version; 11 - sha256 = "09nf6j1hyq2yv0c1cmnv4ff5243ylsajy1xj3dz8c2qqcm14y6cm"; 11 + sha256 = "sha256-rh2vcn58xDsbxxABrxneCq6TKIyT51KxGB7sOtHpvYE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+4 -2
pkgs/development/python-modules/amcrest/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , mock 6 + , httpx 6 7 , pytestCheckHook 7 8 , pythonOlder 8 9 , requests ··· 13 14 14 15 buildPythonPackage rec { 15 16 pname = "amcrest"; 16 - version = "1.8.1"; 17 + version = "1.9.2"; 17 18 disabled = pythonOlder "3.6"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "tchellomello"; 21 22 repo = "python-amcrest"; 22 23 rev = version; 23 - sha256 = "sha256-a23AjLRNghu5CT3GHvnti0BHnku9CxLP1EkE0GrwB3w="; 24 + sha256 = "sha256-xBrXe3BUvLfSk7zBHVJLh/K3lGVkFKOCq0RNAOb9GqI="; 24 25 }; 25 26 26 27 propagatedBuildInputs = [ 27 28 argcomplete 29 + httpx 28 30 requests 29 31 urllib3 30 32 typing-extensions
+2 -2
pkgs/development/python-modules/elementpath/default.nix
··· 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 - version = "2.3.1"; 8 + version = "2.3.2"; 9 9 pname = "elementpath"; 10 10 11 11 disabled = pythonOlder "3.6"; ··· 14 14 owner = "sissaschool"; 15 15 repo = "elementpath"; 16 16 rev = "v${version}"; 17 - sha256 = "1imjilhmbw08469irlbr3am5zksbg327n7mznxfixrigq9d65qx6"; 17 + sha256 = "01h68v077xbcnqn9v52i8d6s6i7ds3zycn3ddn11hc074m4gg3af"; 18 18 }; 19 19 20 20 # avoid circular dependency with xmlschema which directly depends on this
+16 -5
pkgs/development/python-modules/green/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 1 + { lib 2 + , buildPythonPackage 3 + , isPy3k 4 + , fetchPypi 2 5 , colorama 3 6 , coverage 4 - , termstyle 5 - , lxml 6 7 , unidecode 8 + , lxml 7 9 }: 8 10 9 11 buildPythonPackage rec { ··· 17 19 sha256 = "a4d86f2dfa4ccbc86f24bcb9c9ab8bf34219c876c24e9f0603aab4dfe73bb575"; 18 20 }; 19 21 22 + patches = [ 23 + ./tests.patch 24 + ]; 25 + 26 + postPatch = '' 27 + substituteInPlace green/test/test_integration.py \ 28 + --subst-var-by green "$out/bin/green" 29 + ''; 30 + 20 31 propagatedBuildInputs = [ 21 - colorama coverage termstyle unidecode lxml 32 + colorama coverage unidecode lxml 22 33 ]; 23 34 24 35 # let green run it's own test suite 25 36 checkPhase = '' 26 - $out/bin/green green 37 + $out/bin/green -tvvv green 27 38 ''; 28 39 29 40 meta = with lib; {
+22
pkgs/development/python-modules/green/tests.patch
··· 1 + diff --git a/green/test/test_integration.py b/green/test/test_integration.py 2 + index 0cf8cbb..40d9f6b 100644 3 + --- a/green/test/test_integration.py 4 + +++ b/green/test/test_integration.py 5 + @@ -41,9 +41,7 @@ class TestFinalizer(unittest.TestCase): 6 + ) 7 + fh.close() 8 + args = [ 9 + - sys.executable, 10 + - "-m", 11 + - "green.cmdline", 12 + + "@green@", 13 + "--finalizer=test_finalizer0.msg", 14 + "--maxtasksperchild=1", 15 + ] 16 + @@ -58,6 +56,5 @@ class TestFinalizer(unittest.TestCase): 17 + stdout=subprocess.PIPE, 18 + stderr=subprocess.STDOUT, 19 + env=env, 20 + - timeout=10, 21 + ).stdout.decode("utf-8") 22 + self.assertIn("finalizer worked", output)
+2 -2
pkgs/development/python-modules/imap-tools/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "imap-tools"; 10 - version = "0.46.0"; 10 + version = "0.47.0"; 11 11 12 12 disabled = isPy27; 13 13 ··· 15 15 owner = "ikvk"; 16 16 repo = "imap_tools"; 17 17 rev = "v${version}"; 18 - sha256 = "08a4p4q96zz6qp3cy7hs5jn9h2gf68d8zchw4w0kk83sm1r8rpxw"; 18 + sha256 = "sha256-7I7g/jxaVQDvhoGLWVerqYZhFhGUM/FwH1XCpLpg3D0="; 19 19 }; 20 20 21 21 checkInputs = [
+2 -2
pkgs/development/python-modules/mitmproxy/default.nix
··· 45 45 46 46 buildPythonPackage rec { 47 47 pname = "mitmproxy"; 48 - version = "7.0.2"; 48 + version = "7.0.3"; 49 49 disabled = pythonOlder "3.8"; 50 50 51 51 src = fetchFromGitHub { 52 52 owner = pname; 53 53 repo = pname; 54 54 rev = "v${version}"; 55 - sha256 = "0y5zsay9b6xgibs6m4gckw63jip35vsdfajsh1nw2zcb2xs1a7qs"; 55 + sha256 = "sha256-j1lipshccPUpMR+o28hDyaJbrVgj6AHijFqOgVmrBkg="; 56 56 }; 57 57 58 58 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyglet/default.nix
··· 18 18 }: 19 19 20 20 buildPythonPackage rec { 21 - version = "1.5.20"; 21 + version = "1.5.21"; 22 22 pname = "pyglet"; 23 23 disabled = pythonOlder "3.6"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "ce76ce598ac910fbae6aae0db00aac21d19d62bdc8c616ed6e6a6a395dc44513"; 27 + sha256 = "5aaaddb06dc4b6f9ba08254d8d806a2bd2406925a9caf3a51fdffbd5d09728e2"; 28 28 extension = "zip"; 29 29 }; 30 30
+2 -2
pkgs/development/python-modules/pylitterbot/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pylitterbot"; 14 - version = "2021.8.1"; 14 + version = "2021.9.0"; 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "natekspencer"; 19 19 repo = pname; 20 20 rev = version; 21 - sha256 = "sha256-ULaybf2uV8lY9J9EHlszbnLWZJ0QO7y6BQxvdQX+nMU="; 21 + sha256 = "sha256-S25x9k6vBwnmJq15y5PVUWaTujT9UNHvgIX9uH+N8dY="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pytest-snapshot/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pytest-snapshot"; 5 - version = "0.6.3"; 5 + version = "0.7.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "f99152df98587f883f37bb0315f082ab3e0c565f53413f1193bb0019b992c3ea"; 9 + sha256 = "427b5ab088b25a1c8b63ce99725040664c840ff1f5a3891252723cce972897f9"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ setuptools-scm ];
-1
pkgs/development/python-modules/r2pipe/default.nix
··· 38 38 import r2pipe 39 39 r2 = r2pipe.open('${coreutils}/bin/ls') 40 40 r2.cmd('a') 41 - r2.quit() 42 41 EOF 43 42 ''; 44 43
+2 -2
pkgs/development/python-modules/scikits-odes/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "scikits.odes"; 19 - version = "2.6.1"; 19 + version = "2.6.2"; 20 20 21 21 disabled = isPy27; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - sha256 = "0kbf2n16h9s35x6pavlx6sff0pqr68i0x0609z92a4vadni32n6b"; 25 + sha256 = "267d8bfa1e18d075d574158053d887562381e88176ebab856516b52b14860983"; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/simplekml/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "simplekml"; 8 - version = "1.3.5"; 8 + version = "1.3.6"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5"; 12 + sha256 = "cda687be2754395fcab664e908ebf589facd41e8436d233d2be37a69efb1c536"; 13 13 }; 14 14 15 15 # no tests are defined in 1.3.5
+2 -2
pkgs/development/python-modules/ytmusicapi/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ytmusicapi"; 10 - version = "0.19.1"; 10 + version = "0.19.2"; 11 11 12 12 disabled = isPy27; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "1b8a050e2208b3d05359106d8c44c3d62e60edf6753529bd8a207788a6caeb95"; 16 + sha256 = "sha256-Vmf3eZpeRPDYWy6fc8VRYsQZJrwwX3KTs0njfPy6HRE="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+705 -410
pkgs/development/tools/continuous-integration/github-runner/deps.nix
··· 9 9 [ 10 10 11 11 (fetchNuGet { 12 - name = "Castle.Core"; 12 + name = "castle.core"; 13 13 version = "4.4.0"; 14 14 sha256 = "0rpcbmyhckvlvp6vbzpj03c1gqz56ixc6f15vgmxmyf1g40c24pf"; 15 15 }) 16 - 17 16 (fetchNuGet { 18 - name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; 19 - version = "3.1.8"; 20 - sha256 = "140zr3nwkmf6xc52gq4iz6ycyh95fxy0jpgn637pkd9z423z8135"; 17 + name = "microsoft.aspnetcore.app.runtime.linux-x64"; 18 + version = "3.1.19"; 19 + sha256 = "19z4zrchaxcz0a33c33n1qd11z9khj4323nfzsbzah0xxkkj8ka8"; 21 20 }) 22 - 23 21 (fetchNuGet { 24 - name = "Microsoft.AspNet.WebApi.Client"; 22 + name = "microsoft.aspnet.webapi.client"; 25 23 version = "5.2.4"; 26 24 sha256 = "00fkczf69z2rwarcd8kjjdp47517a0ca6lggn72qbilsp03a5scj"; 27 25 }) 28 - 26 + (fetchNuGet { 27 + name = "microsoft.csharp"; 28 + version = "4.0.1"; 29 + sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; 30 + }) 29 31 (fetchNuGet { 30 - name = "Microsoft.IdentityModel.Logging"; 32 + name = "microsoft.identitymodel.logging"; 31 33 version = "5.2.1"; 32 34 sha256 = "1gpka9jm2gl6f07pcwzwvaxw9xq1a19i9fskn0qs921c5grhlp3g"; 33 35 }) 34 - 35 36 (fetchNuGet { 36 - name = "Microsoft.IdentityModel.Tokens"; 37 + name = "microsoft.identitymodel.tokens"; 37 38 version = "5.2.1"; 38 39 sha256 = "03v6145vr1winq8xxfikydicds4f10qmy1ybyz2gfimnzzx51w00"; 39 40 }) 40 - 41 41 (fetchNuGet { 42 - name = "Microsoft.NetCore.App.Runtime.linux-x64"; 43 - version = "3.1.8"; 44 - sha256 = "1bv9n9wzsqf9g8h6z10p61xkcx8ad4nnip83qv8yyfvhr4kdmbsa"; 42 + name = "microsoft.netcore.app.runtime.linux-x64"; 43 + version = "3.1.19"; 44 + sha256 = "10c9bq1z8j173n9jzamgplbxq101yscwdhksshn1ybisn7cr5g0h"; 45 45 }) 46 - 47 46 (fetchNuGet { 48 - name = "Microsoft.NETCore.Platforms"; 47 + name = "microsoft.netcore.platforms"; 49 48 version = "1.0.1"; 50 49 sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; 51 50 }) 52 - 53 51 (fetchNuGet { 54 - name = "Microsoft.NETCore.Platforms"; 52 + name = "microsoft.netcore.platforms"; 53 + version = "1.0.1-rc2-24027"; 54 + sha256 = "1a0w5fv8slfr4q7m3mh78lb9awdwyz4zv3bb73vybkyq1f6z7lx8"; 55 + }) 56 + (fetchNuGet { 57 + name = "microsoft.netcore.platforms"; 55 58 version = "1.1.0"; 56 59 sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; 57 60 }) 58 - 59 61 (fetchNuGet { 60 - name = "Microsoft.NETCore.Platforms"; 62 + name = "microsoft.netcore.platforms"; 61 63 version = "2.0.0"; 62 64 sha256 = "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0"; 63 65 }) 64 - 66 + (fetchNuGet { 67 + name = "microsoft.netcore.runtime"; 68 + version = "1.0.2-rc2-24027"; 69 + sha256 = "0ippdn16381l8i2iy63i45nk0p303fjbd4amh7biwvqxgagfbvhh"; 70 + }) 71 + (fetchNuGet { 72 + name = "microsoft.netcore.runtime.coreclr"; 73 + version = "1.0.2-rc2-24027"; 74 + sha256 = "05y0jz6vfl9zs0lmmwsz6arf7r0mg2dm93ymizrzmqn706krz45x"; 75 + }) 76 + (fetchNuGet { 77 + name = "microsoft.netcore.runtime.native"; 78 + version = "1.0.2-rc2-24027"; 79 + sha256 = "11hpbbmnjbskw7s6sx32l6qzz63kshx0gyp3sawyxk82nbqrissl"; 80 + }) 81 + (fetchNuGet { 82 + name = "microsoft.netcore.targets"; 83 + version = "1.0.1"; 84 + sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; 85 + }) 65 86 (fetchNuGet { 66 - name = "Microsoft.NETCore.Targets"; 87 + name = "microsoft.netcore.targets"; 88 + version = "1.0.1-rc2-24027"; 89 + sha256 = "1j1458jska7540ng7fdf5i06k2vy71mxl5dld4x5s8gfndxpdzdj"; 90 + }) 91 + (fetchNuGet { 92 + name = "microsoft.netcore.targets"; 67 93 version = "1.1.0"; 68 94 sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; 69 95 }) 70 - 96 + (fetchNuGet { 97 + name = "microsoft.netcore.windows.apisets"; 98 + version = "1.0.1-rc2-24027"; 99 + sha256 = "034m9p417iq3yzipg393wp4bddsh80di9iad78vvvh7w5difdv0x"; 100 + }) 71 101 (fetchNuGet { 72 - name = "Microsoft.NET.Test.Sdk"; 102 + name = "microsoft.net.test.sdk"; 73 103 version = "15.0.0"; 74 104 sha256 = "1ca9v53dphsgk22spilfwq1hjzp2sgrrj85v7hd7wfc6gjh31mb5"; 75 105 }) 76 - 77 106 (fetchNuGet { 78 - name = "Microsoft.TestPlatform.ObjectModel"; 107 + name = "microsoft.testplatform.objectmodel"; 79 108 version = "15.0.0"; 80 109 sha256 = "0xqssz2y8jzqph6kv1fzy00wzjcnc2whhlf8jsszgpn69ld7f1rb"; 81 110 }) 82 - 83 111 (fetchNuGet { 84 - name = "Microsoft.TestPlatform.TestHost"; 112 + name = "microsoft.testplatform.testhost"; 85 113 version = "15.0.0"; 86 114 sha256 = "1mi59wxwdqyzmkan0v9qrar96f50xs6k38xzv3l6ky859si2qk4b"; 87 115 }) 88 - 89 116 (fetchNuGet { 90 - name = "Microsoft.Win32.Primitives"; 117 + name = "microsoft.win32.primitives"; 91 118 version = "4.0.1"; 92 119 sha256 = "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7"; 93 120 }) 94 - 121 + (fetchNuGet { 122 + name = "microsoft.win32.primitives"; 123 + version = "4.0.1-rc2-24027"; 124 + sha256 = "1rvb076s4ksvmbvnxi4sv2f9f22izqp2rca0scjqya5x1qhcgkp0"; 125 + }) 95 126 (fetchNuGet { 96 - name = "Microsoft.Win32.Primitives"; 127 + name = "microsoft.win32.primitives"; 97 128 version = "4.3.0"; 98 129 sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; 99 130 }) 100 - 101 131 (fetchNuGet { 102 - name = "Microsoft.Win32.Registry"; 132 + name = "microsoft.win32.registry"; 103 133 version = "4.0.0"; 104 134 sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k"; 105 135 }) 106 - 107 136 (fetchNuGet { 108 - name = "Microsoft.Win32.Registry"; 137 + name = "microsoft.win32.registry"; 109 138 version = "4.4.0"; 110 139 sha256 = "088j2anh1rnkxdcycw5kgp97ahk7cj741y6kask84880835arsb6"; 111 140 }) 112 - 113 141 (fetchNuGet { 114 - name = "Minimatch"; 142 + name = "minimatch"; 115 143 version = "2.0.0"; 116 144 sha256 = "1k84q1bz1qq2nh35nip8vmi65wixsh5y7piln5b4n172xzhfqvx0"; 117 145 }) 118 - 119 146 (fetchNuGet { 120 - name = "Moq"; 147 + name = "moq"; 121 148 version = "4.11.0"; 122 149 sha256 = "08bnk80scjjqnkdbjam8grcqrw2rvj9z7556hiznac7in3fcp77w"; 123 150 }) 124 - 125 151 (fetchNuGet { 126 - name = "NETStandard.Library"; 152 + name = "netstandard.library"; 153 + version = "1.5.0-rc2-24027"; 154 + sha256 = "1kazwidj63w53r1s6fd8sgykb70kdic27fg9qhg74qzwm354imwm"; 155 + }) 156 + (fetchNuGet { 157 + name = "netstandard.library"; 127 158 version = "1.6.0"; 128 159 sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; 129 160 }) 130 - 131 161 (fetchNuGet { 132 - name = "NETStandard.Library"; 162 + name = "netstandard.library"; 133 163 version = "1.6.1"; 134 164 sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; 135 165 }) 136 - 137 166 (fetchNuGet { 138 - name = "Newtonsoft.Json"; 139 - version = "10.0.1"; 140 - sha256 = "15ncqic3p2rzs8q8ppi0irl2miq75kilw4lh8yfgjq96id0ds3hv"; 141 - }) 142 - 143 - (fetchNuGet { 144 - name = "Newtonsoft.Json"; 167 + name = "newtonsoft.json"; 145 168 version = "11.0.2"; 146 169 sha256 = "1784xi44f4k8v1fr696hsccmwpy94bz7kixxqlri98zhcxn406b2"; 147 170 }) 148 - 149 171 (fetchNuGet { 150 - name = "Newtonsoft.Json"; 172 + name = "newtonsoft.json"; 151 173 version = "9.0.1"; 152 174 sha256 = "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r"; 153 175 }) 154 - 155 176 (fetchNuGet { 156 - name = "Newtonsoft.Json.Bson"; 177 + name = "newtonsoft.json.bson"; 157 178 version = "1.0.1"; 158 179 sha256 = "1r1hvj5gjl466bya2bfl5aaj8rbwyf5x1msg710wf3k2llbci1xa"; 159 180 }) 160 - 161 181 (fetchNuGet { 162 - name = "runtime.any.System.Collections"; 182 + name = "runtime.any.system.collections"; 163 183 version = "4.3.0"; 164 184 sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; 165 185 }) 166 - 167 186 (fetchNuGet { 168 - name = "runtime.any.System.Diagnostics.Tools"; 187 + name = "runtime.any.system.diagnostics.tools"; 169 188 version = "4.3.0"; 170 189 sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; 171 190 }) 172 - 173 191 (fetchNuGet { 174 - name = "runtime.any.System.Diagnostics.Tracing"; 192 + name = "runtime.any.system.diagnostics.tracing"; 175 193 version = "4.3.0"; 176 194 sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; 177 195 }) 178 - 179 196 (fetchNuGet { 180 - name = "runtime.any.System.Globalization"; 197 + name = "runtime.any.system.globalization"; 181 198 version = "4.3.0"; 182 199 sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; 183 200 }) 184 - 185 201 (fetchNuGet { 186 - name = "runtime.any.System.Globalization.Calendars"; 202 + name = "runtime.any.system.globalization.calendars"; 187 203 version = "4.3.0"; 188 204 sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; 189 205 }) 190 - 191 206 (fetchNuGet { 192 - name = "runtime.any.System.IO"; 207 + name = "runtime.any.system.io"; 193 208 version = "4.3.0"; 194 209 sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; 195 210 }) 196 - 197 211 (fetchNuGet { 198 - name = "runtime.any.System.Reflection"; 212 + name = "runtime.any.system.reflection"; 199 213 version = "4.3.0"; 200 214 sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; 201 215 }) 202 - 203 216 (fetchNuGet { 204 - name = "runtime.any.System.Reflection.Extensions"; 217 + name = "runtime.any.system.reflection.extensions"; 205 218 version = "4.3.0"; 206 219 sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; 207 220 }) 208 - 209 221 (fetchNuGet { 210 - name = "runtime.any.System.Reflection.Primitives"; 222 + name = "runtime.any.system.reflection.primitives"; 211 223 version = "4.3.0"; 212 224 sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; 213 225 }) 214 - 215 226 (fetchNuGet { 216 - name = "runtime.any.System.Resources.ResourceManager"; 227 + name = "runtime.any.system.resources.resourcemanager"; 217 228 version = "4.3.0"; 218 229 sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; 219 230 }) 220 - 221 231 (fetchNuGet { 222 - name = "runtime.any.System.Runtime"; 232 + name = "runtime.any.system.runtime"; 223 233 version = "4.3.0"; 224 234 sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; 225 235 }) 226 - 227 236 (fetchNuGet { 228 - name = "runtime.any.System.Runtime.Handles"; 237 + name = "runtime.any.system.runtime.handles"; 229 238 version = "4.3.0"; 230 239 sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; 231 240 }) 232 - 233 241 (fetchNuGet { 234 - name = "runtime.any.System.Runtime.InteropServices"; 242 + name = "runtime.any.system.runtime.interopservices"; 235 243 version = "4.3.0"; 236 244 sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; 237 245 }) 238 - 239 246 (fetchNuGet { 240 - name = "runtime.any.System.Text.Encoding"; 247 + name = "runtime.any.system.text.encoding"; 241 248 version = "4.3.0"; 242 249 sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; 243 250 }) 244 - 245 251 (fetchNuGet { 246 - name = "runtime.any.System.Text.Encoding.Extensions"; 252 + name = "runtime.any.system.text.encoding.extensions"; 247 253 version = "4.3.0"; 248 254 sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; 249 255 }) 250 - 251 256 (fetchNuGet { 252 - name = "runtime.any.System.Threading.Tasks"; 257 + name = "runtime.any.system.threading.tasks"; 253 258 version = "4.3.0"; 254 259 sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; 255 260 }) 256 - 257 261 (fetchNuGet { 258 - name = "runtime.any.System.Threading.Timer"; 262 + name = "runtime.any.system.threading.timer"; 259 263 version = "4.3.0"; 260 264 sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; 261 265 }) 262 - 263 266 (fetchNuGet { 264 - name = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 267 + name = 268 + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl"; 265 269 version = "4.3.0"; 266 270 sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; 267 271 }) 268 - 269 272 (fetchNuGet { 270 - name = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 273 + name = 274 + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl"; 271 275 version = "4.3.0"; 272 276 sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; 273 277 }) 274 - 275 278 (fetchNuGet { 276 - name = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 279 + name = 280 + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl"; 277 281 version = "4.3.0"; 278 282 sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; 279 283 }) 280 - 281 284 (fetchNuGet { 282 - name = "runtime.native.System"; 285 + name = "runtime.native.system"; 283 286 version = "4.0.0"; 284 287 sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; 285 288 }) 286 - 289 + (fetchNuGet { 290 + name = "runtime.native.system"; 291 + version = "4.0.0-rc2-24027"; 292 + sha256 = "0n3ndk1g5qdd892sjcz3y2qmg8ki8b001qfgl2fkwv5f52m65pz9"; 293 + }) 287 294 (fetchNuGet { 288 - name = "runtime.native.System"; 295 + name = "runtime.native.system"; 289 296 version = "4.3.0"; 290 297 sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; 291 298 }) 292 - 299 + (fetchNuGet { 300 + name = "runtime.native.system.io.compression"; 301 + version = "4.1.0"; 302 + sha256 = "0d720z4lzyfcabmmnvh0bnj76ll7djhji2hmfh3h44sdkjnlkknk"; 303 + }) 293 304 (fetchNuGet { 294 - name = "runtime.native.System.IO.Compression"; 305 + name = "runtime.native.system.io.compression"; 306 + version = "4.1.0-rc2-24027"; 307 + sha256 = "1qnd05bsrz88cr4wnkq7haf2bwml2zzjcscjk94v8ka4isi1i89b"; 308 + }) 309 + (fetchNuGet { 310 + name = "runtime.native.system.io.compression"; 295 311 version = "4.3.0"; 296 312 sha256 = "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d"; 297 313 }) 298 - 314 + (fetchNuGet { 315 + name = "runtime.native.system.net.http"; 316 + version = "4.0.1"; 317 + sha256 = "1hgv2bmbaskx77v8glh7waxws973jn4ah35zysnkxmf0196sfxg6"; 318 + }) 319 + (fetchNuGet { 320 + name = "runtime.native.system.net.http"; 321 + version = "4.0.1-rc2-24027"; 322 + sha256 = "0dpgj544rfdqlgjc1nwslwbq49mp286wyy6rfnklxlbfgc2mr216"; 323 + }) 299 324 (fetchNuGet { 300 - name = "runtime.native.System.Net.Http"; 325 + name = "runtime.native.system.net.http"; 301 326 version = "4.3.0"; 302 327 sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; 303 328 }) 304 - 329 + (fetchNuGet { 330 + name = "runtime.native.system.security.cryptography"; 331 + version = "4.0.0"; 332 + sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9"; 333 + }) 334 + (fetchNuGet { 335 + name = "runtime.native.system.security.cryptography"; 336 + version = "4.0.0-rc2-24027"; 337 + sha256 = "0pkd72vrqn1jxc20g8h2pgqz02xn2rfbl0m4i7b82xa8bc483jmz"; 338 + }) 305 339 (fetchNuGet { 306 - name = "runtime.native.System.Security.Cryptography.Apple"; 340 + name = "runtime.native.system.security.cryptography.apple"; 307 341 version = "4.3.0"; 308 342 sha256 = "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q"; 309 343 }) 310 - 311 344 (fetchNuGet { 312 - name = "runtime.native.System.Security.Cryptography.OpenSsl"; 345 + name = "runtime.native.system.security.cryptography.openssl"; 313 346 version = "4.3.0"; 314 347 sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; 315 348 }) 316 - 317 349 (fetchNuGet { 318 - name = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 350 + name = 351 + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl"; 319 352 version = "4.3.0"; 320 353 sha256 = "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3"; 321 354 }) 322 - 323 355 (fetchNuGet { 324 - name = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 356 + name = 357 + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl"; 325 358 version = "4.3.0"; 326 359 sha256 = "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf"; 327 360 }) 328 - 329 361 (fetchNuGet { 330 - name = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; 362 + name = 363 + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple"; 331 364 version = "4.3.0"; 332 365 sha256 = "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi"; 333 366 }) 334 - 335 367 (fetchNuGet { 336 - name = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 368 + name = 369 + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl"; 337 370 version = "4.3.0"; 338 371 sha256 = "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3"; 339 372 }) 340 - 341 373 (fetchNuGet { 342 - name = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 374 + name = 375 + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl"; 343 376 version = "4.3.0"; 344 377 sha256 = "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn"; 345 378 }) 346 - 347 379 (fetchNuGet { 348 - name = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 380 + name = 381 + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl"; 349 382 version = "4.3.0"; 350 383 sha256 = "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3"; 351 384 }) 352 - 353 385 (fetchNuGet { 354 - name = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 386 + name = 387 + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl"; 355 388 version = "4.3.0"; 356 389 sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; 357 390 }) 358 - 359 391 (fetchNuGet { 360 - name = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 392 + name = 393 + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl"; 361 394 version = "4.3.0"; 362 395 sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; 363 396 }) 364 - 365 397 (fetchNuGet { 366 - name = "runtime.unix.Microsoft.Win32.Primitives"; 398 + name = "runtime.unix.microsoft.win32.primitives"; 367 399 version = "4.3.0"; 368 400 sha256 = "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id"; 369 401 }) 370 - 371 402 (fetchNuGet { 372 - name = "runtime.unix.System.Console"; 403 + name = "runtime.unix.system.console"; 373 404 version = "4.3.0"; 374 405 sha256 = "1pfpkvc6x2if8zbdzg9rnc5fx51yllprl8zkm5npni2k50lisy80"; 375 406 }) 376 - 377 407 (fetchNuGet { 378 - name = "runtime.unix.System.Diagnostics.Debug"; 408 + name = "runtime.unix.system.diagnostics.debug"; 379 409 version = "4.3.0"; 380 410 sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; 381 411 }) 382 - 383 412 (fetchNuGet { 384 - name = "runtime.unix.System.IO.FileSystem"; 413 + name = "runtime.unix.system.io.filesystem"; 385 414 version = "4.3.0"; 386 415 sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; 387 416 }) 388 - 389 417 (fetchNuGet { 390 - name = "runtime.unix.System.Net.Primitives"; 418 + name = "runtime.unix.system.net.primitives"; 391 419 version = "4.3.0"; 392 420 sha256 = "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4"; 393 421 }) 394 - 395 422 (fetchNuGet { 396 - name = "runtime.unix.System.Net.Sockets"; 423 + name = "runtime.unix.system.net.sockets"; 397 424 version = "4.3.0"; 398 425 sha256 = "03npdxzy8gfv035bv1b9rz7c7hv0rxl5904wjz51if491mw0xy12"; 399 426 }) 400 - 401 427 (fetchNuGet { 402 - name = "runtime.unix.System.Private.Uri"; 428 + name = "runtime.unix.system.private.uri"; 403 429 version = "4.3.0"; 404 430 sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; 405 431 }) 406 - 407 432 (fetchNuGet { 408 - name = "runtime.unix.System.Runtime.Extensions"; 433 + name = "runtime.unix.system.runtime.extensions"; 409 434 version = "4.3.0"; 410 435 sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; 411 436 }) 412 - 413 437 (fetchNuGet { 414 - name = "Sdk"; 415 - version = "1.0.0"; 416 - sha256 = "0425gviagj8xl8mwl4bwn1v98j7407sdk78xgxk37z62vgcgs73w"; 438 + name = "system.appcontext"; 439 + version = "4.1.0"; 440 + sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; 417 441 }) 418 - 442 + (fetchNuGet { 443 + name = "system.appcontext"; 444 + version = "4.1.0-rc2-24027"; 445 + sha256 = "0c0x3sg12a5zwiamvxs9c4bhdwmmm9by6x5da58fbrzz7afbaaag"; 446 + }) 419 447 (fetchNuGet { 420 - name = "System.AppContext"; 448 + name = "system.appcontext"; 421 449 version = "4.3.0"; 422 450 sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; 423 451 }) 424 - 425 452 (fetchNuGet { 426 - name = "System.Buffers"; 453 + name = "system.buffers"; 454 + version = "4.0.0-rc2-24027"; 455 + sha256 = "1mqnay87pkxih73984jf5fm14d0m6yjq4cv4cqbj37nmgm54ssjp"; 456 + }) 457 + (fetchNuGet { 458 + name = "system.buffers"; 427 459 version = "4.3.0"; 428 460 sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; 429 461 }) 430 - 431 462 (fetchNuGet { 432 - name = "System.Collections"; 463 + name = "system.collections"; 433 464 version = "4.0.11"; 434 465 sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; 435 466 }) 436 - 467 + (fetchNuGet { 468 + name = "system.collections"; 469 + version = "4.0.11-rc2-24027"; 470 + sha256 = "0ijpgf7iy3mcvr9327craxsb0lsznprajqzjy59sspc75gk0yahq"; 471 + }) 437 472 (fetchNuGet { 438 - name = "System.Collections"; 473 + name = "system.collections"; 439 474 version = "4.3.0"; 440 475 sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; 441 476 }) 442 - 443 477 (fetchNuGet { 444 - name = "System.Collections.Concurrent"; 478 + name = "system.collections.concurrent"; 479 + version = "4.0.12"; 480 + sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; 481 + }) 482 + (fetchNuGet { 483 + name = "system.collections.concurrent"; 484 + version = "4.0.12-rc2-24027"; 485 + sha256 = "0yhc5q74vb9vb9cmyrr9p4dfql62dr7c8ajbaxnzzs917v2z68q4"; 486 + }) 487 + (fetchNuGet { 488 + name = "system.collections.concurrent"; 445 489 version = "4.3.0"; 446 490 sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; 447 491 }) 448 - 449 492 (fetchNuGet { 450 - name = "System.Collections.Immutable"; 493 + name = "system.collections.immutable"; 451 494 version = "1.2.0"; 452 495 sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m"; 453 496 }) 454 - 455 497 (fetchNuGet { 456 - name = "System.Collections.NonGeneric"; 498 + name = "system.collections.nongeneric"; 499 + version = "4.0.1"; 500 + sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d"; 501 + }) 502 + (fetchNuGet { 503 + name = "system.collections.nongeneric"; 457 504 version = "4.3.0"; 458 505 sha256 = "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k"; 459 506 }) 460 - 507 + (fetchNuGet { 508 + name = "system.collections.specialized"; 509 + version = "4.0.1"; 510 + sha256 = "1wbv7y686p5x169rnaim7sln67ivmv6r57falrnx8aap9y33mam9"; 511 + }) 461 512 (fetchNuGet { 462 - name = "System.Collections.Specialized"; 513 + name = "system.collections.specialized"; 463 514 version = "4.3.0"; 464 515 sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20"; 465 516 }) 466 - 517 + (fetchNuGet { 518 + name = "system.componentmodel"; 519 + version = "4.0.1"; 520 + sha256 = "0v4qpmqlzyfad2kswxxj2frnaqqhz9201c3yn8fmmarx5vlzg52z"; 521 + }) 467 522 (fetchNuGet { 468 - name = "System.ComponentModel"; 523 + name = "system.componentmodel"; 469 524 version = "4.3.0"; 470 525 sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb"; 471 526 }) 472 - 473 527 (fetchNuGet { 474 - name = "System.ComponentModel.EventBasedAsync"; 528 + name = "system.componentmodel.eventbasedasync"; 475 529 version = "4.0.11"; 476 530 sha256 = "07r5i7xwban347nsfw28hhjwpr78ywksjyhywvhj1yr0s7sr00wh"; 477 531 }) 478 - 532 + (fetchNuGet { 533 + name = "system.componentmodel.primitives"; 534 + version = "4.1.0"; 535 + sha256 = "0wb5mnaag0w4fnyc40x19j8v2vshxp266razw64bcqfyj1whb1q0"; 536 + }) 479 537 (fetchNuGet { 480 - name = "System.ComponentModel.Primitives"; 538 + name = "system.componentmodel.primitives"; 481 539 version = "4.3.0"; 482 540 sha256 = "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0"; 483 541 }) 484 - 485 542 (fetchNuGet { 486 - name = "System.ComponentModel.TypeConverter"; 543 + name = "system.componentmodel.typeconverter"; 487 544 version = "4.1.0"; 488 545 sha256 = "178cva9p1cs043h5n2fry5xkzr3wc9n0hwbxa8m3ymld9m6wcv0y"; 489 546 }) 490 - 491 547 (fetchNuGet { 492 - name = "System.ComponentModel.TypeConverter"; 548 + name = "system.componentmodel.typeconverter"; 493 549 version = "4.3.0"; 494 550 sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x"; 495 551 }) 496 - 552 + (fetchNuGet { 553 + name = "system.console"; 554 + version = "4.0.0"; 555 + sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; 556 + }) 557 + (fetchNuGet { 558 + name = "system.console"; 559 + version = "4.0.0-rc2-24027"; 560 + sha256 = "072m313av0s5cfpr2rpq07p7c13dy4rh1ngigv3dnr1yyvab9081"; 561 + }) 497 562 (fetchNuGet { 498 - name = "System.Console"; 563 + name = "system.console"; 499 564 version = "4.3.0"; 500 565 sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; 501 566 }) 502 - 503 567 (fetchNuGet { 504 - name = "System.Diagnostics.Debug"; 568 + name = "system.diagnostics.debug"; 505 569 version = "4.0.11"; 506 570 sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 507 571 }) 508 - 572 + (fetchNuGet { 573 + name = "system.diagnostics.debug"; 574 + version = "4.0.11-rc2-24027"; 575 + sha256 = "11rz0kdzk4bw9yc85jmskxla7i1bs61kladqzvymrg8xn3lk488a"; 576 + }) 509 577 (fetchNuGet { 510 - name = "System.Diagnostics.Debug"; 578 + name = "system.diagnostics.debug"; 511 579 version = "4.3.0"; 512 580 sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; 513 581 }) 514 - 515 582 (fetchNuGet { 516 - name = "System.Diagnostics.DiagnosticSource"; 583 + name = "system.diagnostics.diagnosticsource"; 584 + version = "4.0.0"; 585 + sha256 = "1n6c3fbz7v8d3pn77h4v5wvsfrfg7v1c57lg3nff3cjyh597v23m"; 586 + }) 587 + (fetchNuGet { 588 + name = "system.diagnostics.diagnosticsource"; 589 + version = "4.0.0-rc2-24027"; 590 + sha256 = "1cizj1xvaz7dm701r4bl6s08858j1r2794y7xx8abyw8j91c957w"; 591 + }) 592 + (fetchNuGet { 593 + name = "system.diagnostics.diagnosticsource"; 517 594 version = "4.3.0"; 518 595 sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; 519 596 }) 520 - 521 597 (fetchNuGet { 522 - name = "System.Diagnostics.Process"; 598 + name = "system.diagnostics.process"; 523 599 version = "4.1.0"; 524 600 sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s"; 525 601 }) 526 - 527 602 (fetchNuGet { 528 - name = "System.Diagnostics.TextWriterTraceListener"; 603 + name = "system.diagnostics.textwritertracelistener"; 529 604 version = "4.0.0"; 530 605 sha256 = "1xigiwkwyxak0dhm0p8i2zb7a9syly9cdb5s9zkr9rbad4f2fqhs"; 531 606 }) 532 - 607 + (fetchNuGet { 608 + name = "system.diagnostics.tools"; 609 + version = "4.0.1"; 610 + sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 611 + }) 533 612 (fetchNuGet { 534 - name = "System.Diagnostics.Tools"; 613 + name = "system.diagnostics.tools"; 614 + version = "4.0.1-rc2-24027"; 615 + sha256 = "080gd86c1pkfkzz67ispkzxc426lfh82zajayiizbgwd6yqa7fv5"; 616 + }) 617 + (fetchNuGet { 618 + name = "system.diagnostics.tools"; 535 619 version = "4.3.0"; 536 620 sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 537 621 }) 538 - 539 622 (fetchNuGet { 540 - name = "System.Diagnostics.TraceSource"; 623 + name = "system.diagnostics.tracesource"; 541 624 version = "4.0.0"; 542 625 sha256 = "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h"; 543 626 }) 544 - 545 627 (fetchNuGet { 546 - name = "System.Diagnostics.TraceSource"; 628 + name = "system.diagnostics.tracesource"; 547 629 version = "4.3.0"; 548 630 sha256 = "1kyw4d7dpjczhw6634nrmg7yyyzq72k75x38y0l0nwhigdlp1766"; 549 631 }) 550 - 551 632 (fetchNuGet { 552 - name = "System.Diagnostics.Tracing"; 633 + name = "system.diagnostics.tracing"; 553 634 version = "4.1.0"; 554 635 sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; 555 636 }) 556 - 637 + (fetchNuGet { 638 + name = "system.diagnostics.tracing"; 639 + version = "4.1.0-rc2-24027"; 640 + sha256 = "0a0c24lm8yn0hbvd5m64lv7xhs2bmhm5fdpk89xvxj14zdarqhm6"; 641 + }) 557 642 (fetchNuGet { 558 - name = "System.Diagnostics.Tracing"; 643 + name = "system.diagnostics.tracing"; 559 644 version = "4.3.0"; 560 645 sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; 561 646 }) 562 - 647 + (fetchNuGet { 648 + name = "system.dynamic.runtime"; 649 + version = "4.0.11"; 650 + sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 651 + }) 563 652 (fetchNuGet { 564 - name = "System.Dynamic.Runtime"; 653 + name = "system.dynamic.runtime"; 565 654 version = "4.3.0"; 566 655 sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; 567 656 }) 568 - 569 657 (fetchNuGet { 570 - name = "System.Globalization"; 658 + name = "system.globalization"; 571 659 version = "4.0.11"; 572 660 sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; 573 661 }) 574 - 575 662 (fetchNuGet { 576 - name = "System.Globalization"; 663 + name = "system.globalization"; 664 + version = "4.0.11-rc2-24027"; 665 + sha256 = "0yl161lr85smzdfzb7fbk0lfrqk5ns71hcnws6vm3sn2aqvfmhpn"; 666 + }) 667 + (fetchNuGet { 668 + name = "system.globalization"; 577 669 version = "4.3.0"; 578 670 sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; 579 671 }) 580 - 672 + (fetchNuGet { 673 + name = "system.globalization.calendars"; 674 + version = "4.0.1"; 675 + sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; 676 + }) 581 677 (fetchNuGet { 582 - name = "System.Globalization.Calendars"; 678 + name = "system.globalization.calendars"; 679 + version = "4.0.1-rc2-24027"; 680 + sha256 = "0whr2qird567iyc137s10qs0xi6607kjii9wi8a8g1f9lybzlz5k"; 681 + }) 682 + (fetchNuGet { 683 + name = "system.globalization.calendars"; 583 684 version = "4.3.0"; 584 685 sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; 585 686 }) 586 - 687 + (fetchNuGet { 688 + name = "system.globalization.extensions"; 689 + version = "4.0.1"; 690 + sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; 691 + }) 587 692 (fetchNuGet { 588 - name = "System.Globalization.Extensions"; 693 + name = "system.globalization.extensions"; 589 694 version = "4.3.0"; 590 695 sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; 591 696 }) 592 - 593 697 (fetchNuGet { 594 - name = "System.IdentityModel.Tokens.Jwt"; 698 + name = "system.identitymodel.tokens.jwt"; 595 699 version = "5.2.1"; 596 700 sha256 = "08n1z9ngsi26qlhwpjzxafhwl3p279widfci64l2ahxf1gprfqsx"; 597 701 }) 598 - 599 702 (fetchNuGet { 600 - name = "System.IO"; 703 + name = "system.io"; 601 704 version = "4.1.0"; 602 705 sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; 603 706 }) 604 - 605 707 (fetchNuGet { 606 - name = "System.IO"; 708 + name = "system.io"; 709 + version = "4.1.0-rc2-24027"; 710 + sha256 = "0rwqmn743gl21xnb3rwqkdacshd5l86pn23mc4bviva3pbncbjs4"; 711 + }) 712 + (fetchNuGet { 713 + name = "system.io"; 607 714 version = "4.3.0"; 608 715 sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; 609 716 }) 610 - 717 + (fetchNuGet { 718 + name = "system.io.compression"; 719 + version = "4.1.0"; 720 + sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; 721 + }) 722 + (fetchNuGet { 723 + name = "system.io.compression"; 724 + version = "4.1.0-rc2-24027"; 725 + sha256 = "07s5zxdw3ihxdv0mjxb2ywzg9phcp4bayrhkadzm95l4kcv0xaij"; 726 + }) 611 727 (fetchNuGet { 612 - name = "System.IO.Compression"; 728 + name = "system.io.compression"; 613 729 version = "4.3.0"; 614 730 sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; 615 731 }) 616 - 617 732 (fetchNuGet { 618 - name = "System.IO.Compression.ZipFile"; 733 + name = "system.io.compression.zipfile"; 734 + version = "4.0.1"; 735 + sha256 = "0h72znbagmgvswzr46mihn7xm7chfk2fhrp5krzkjf29pz0i6z82"; 736 + }) 737 + (fetchNuGet { 738 + name = "system.io.compression.zipfile"; 739 + version = "4.0.1-rc2-24027"; 740 + sha256 = "0np6vf9rnfasz0sqys56kpryc84qcqi1a1rfskmycdlxk182p3s2"; 741 + }) 742 + (fetchNuGet { 743 + name = "system.io.compression.zipfile"; 619 744 version = "4.3.0"; 620 745 sha256 = "1yxy5pq4dnsm9hlkg9ysh5f6bf3fahqqb6p8668ndy5c0lk7w2ar"; 621 746 }) 622 - 623 747 (fetchNuGet { 624 - name = "System.IO.FileSystem"; 748 + name = "system.io.filesystem"; 625 749 version = "4.0.1"; 626 750 sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 627 751 }) 628 - 752 + (fetchNuGet { 753 + name = "system.io.filesystem"; 754 + version = "4.0.1-rc2-24027"; 755 + sha256 = "0hpw3ssnbcv9l1lnlcym2bv3h3sf2znif4brys2i3868s6h946k6"; 756 + }) 629 757 (fetchNuGet { 630 - name = "System.IO.FileSystem"; 758 + name = "system.io.filesystem"; 631 759 version = "4.3.0"; 632 760 sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 633 761 }) 634 - 635 762 (fetchNuGet { 636 - name = "System.IO.FileSystem.AccessControl"; 763 + name = "system.io.filesystem.accesscontrol"; 637 764 version = "4.4.0"; 638 765 sha256 = "11sna2bv5ai4sivrs7g2gp7g0yjp02s0kasl01j3fa1cvnwwvgkv"; 639 766 }) 640 - 641 767 (fetchNuGet { 642 - name = "System.IO.FileSystem.Primitives"; 768 + name = "system.io.filesystem.primitives"; 643 769 version = "4.0.1"; 644 770 sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; 645 771 }) 646 - 772 + (fetchNuGet { 773 + name = "system.io.filesystem.primitives"; 774 + version = "4.0.1-rc2-24027"; 775 + sha256 = "04q3sxrfxqgig9scmxblxlb6n6fypv535lby26pi20ixszs19dxc"; 776 + }) 647 777 (fetchNuGet { 648 - name = "System.IO.FileSystem.Primitives"; 778 + name = "system.io.filesystem.primitives"; 649 779 version = "4.3.0"; 650 780 sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; 651 781 }) 652 - 782 + (fetchNuGet { 783 + name = "system.io.filesystem.watcher"; 784 + version = "4.0.0-rc2-24027"; 785 + sha256 = "0g2h4q0w42frdz101z2cxs4n9zpxvzb43wnzawx1f26vpilz7km4"; 786 + }) 653 787 (fetchNuGet { 654 - name = "System.Linq"; 788 + name = "system.linq"; 655 789 version = "4.1.0"; 656 790 sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 657 791 }) 658 - 792 + (fetchNuGet { 793 + name = "system.linq"; 794 + version = "4.1.0-rc2-24027"; 795 + sha256 = "0icbsy0vq07achclz32jvnnfdchkgylsjj67gra3fn5906s40n24"; 796 + }) 659 797 (fetchNuGet { 660 - name = "System.Linq"; 798 + name = "system.linq"; 661 799 version = "4.3.0"; 662 800 sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 663 801 }) 664 - 665 802 (fetchNuGet { 666 - name = "System.Linq.Expressions"; 803 + name = "system.linq.expressions"; 804 + version = "4.1.0"; 805 + sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 806 + }) 807 + (fetchNuGet { 808 + name = "system.linq.expressions"; 667 809 version = "4.3.0"; 668 810 sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; 669 811 }) 670 - 812 + (fetchNuGet { 813 + name = "system.net.http"; 814 + version = "4.0.1-rc2-24027"; 815 + sha256 = "1j9z5as3k7ydr4yi83lwh09hqj32g2ndpjgj25xvny5a32dl2mhz"; 816 + }) 817 + (fetchNuGet { 818 + name = "system.net.http"; 819 + version = "4.1.0"; 820 + sha256 = "1i5rqij1icg05j8rrkw4gd4pgia1978mqhjzhsjg69lvwcdfg8yb"; 821 + }) 671 822 (fetchNuGet { 672 - name = "System.Net.Http"; 823 + name = "system.net.http"; 673 824 version = "4.3.0"; 674 825 sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; 675 826 }) 676 - 677 827 (fetchNuGet { 678 - name = "System.Net.NameResolution"; 828 + name = "system.net.nameresolution"; 679 829 version = "4.3.0"; 680 830 sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; 681 831 }) 682 - 832 + (fetchNuGet { 833 + name = "system.net.primitives"; 834 + version = "4.0.11"; 835 + sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; 836 + }) 683 837 (fetchNuGet { 684 - name = "System.Net.Primitives"; 838 + name = "system.net.primitives"; 839 + version = "4.0.11-rc2-24027"; 840 + sha256 = "16wv24cb39639i7fcw005hh1rggyz2bgn51dpkdc67aq9lz76ivm"; 841 + }) 842 + (fetchNuGet { 843 + name = "system.net.primitives"; 685 844 version = "4.3.0"; 686 845 sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; 687 846 }) 688 - 847 + (fetchNuGet { 848 + name = "system.net.sockets"; 849 + version = "4.1.0"; 850 + sha256 = "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls"; 851 + }) 689 852 (fetchNuGet { 690 - name = "System.Net.Sockets"; 853 + name = "system.net.sockets"; 854 + version = "4.1.0-rc2-24027"; 855 + sha256 = "062kbbvm17nhwmcxjnakfv3i23vrk6c9gmz6x8q79kcr5hxr40qs"; 856 + }) 857 + (fetchNuGet { 858 + name = "system.net.sockets"; 691 859 version = "4.3.0"; 692 860 sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; 693 861 }) 694 - 862 + (fetchNuGet { 863 + name = "system.objectmodel"; 864 + version = "4.0.12"; 865 + sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 866 + }) 867 + (fetchNuGet { 868 + name = "system.objectmodel"; 869 + version = "4.0.12-rc2-24027"; 870 + sha256 = "065p89awfiz9kb304hqs7wkfpykd9z9kkv84ihm813msv54i8lvj"; 871 + }) 695 872 (fetchNuGet { 696 - name = "System.ObjectModel"; 873 + name = "system.objectmodel"; 697 874 version = "4.3.0"; 698 875 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 699 876 }) 700 - 701 877 (fetchNuGet { 702 - name = "System.Private.DataContractSerialization"; 878 + name = "system.private.datacontractserialization"; 703 879 version = "4.1.1"; 704 880 sha256 = "1xk9wvgzipssp1393nsg4n16zbr5481k03nkdlj954hzq5jkx89r"; 705 881 }) 706 - 707 882 (fetchNuGet { 708 - name = "System.Private.DataContractSerialization"; 883 + name = "system.private.datacontractserialization"; 709 884 version = "4.3.0"; 710 885 sha256 = "06fjipqvjp559rrm825x6pll8gimdj9x1n3larigh5hsm584gndw"; 711 886 }) 712 - 713 887 (fetchNuGet { 714 - name = "System.Private.Uri"; 888 + name = "system.private.uri"; 715 889 version = "4.3.0"; 716 890 sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; 717 891 }) 718 - 719 892 (fetchNuGet { 720 - name = "System.Reflection"; 893 + name = "system.reflection"; 721 894 version = "4.1.0"; 722 895 sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; 723 896 }) 724 - 725 897 (fetchNuGet { 726 - name = "System.Reflection"; 898 + name = "system.reflection"; 899 + version = "4.1.0-rc2-24027"; 900 + sha256 = "0717y8iqcw19g2zkcs0hkalvjhnpaq5mapd82kxkhiq1djgjhhi2"; 901 + }) 902 + (fetchNuGet { 903 + name = "system.reflection"; 727 904 version = "4.3.0"; 728 905 sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; 729 906 }) 730 - 907 + (fetchNuGet { 908 + name = "system.reflection.emit"; 909 + version = "4.0.1"; 910 + sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 911 + }) 731 912 (fetchNuGet { 732 - name = "System.Reflection.Emit"; 913 + name = "system.reflection.emit"; 733 914 version = "4.3.0"; 734 915 sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; 735 916 }) 736 - 917 + (fetchNuGet { 918 + name = "system.reflection.emit.ilgeneration"; 919 + version = "4.0.1"; 920 + sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 921 + }) 737 922 (fetchNuGet { 738 - name = "System.Reflection.Emit.ILGeneration"; 923 + name = "system.reflection.emit.ilgeneration"; 739 924 version = "4.3.0"; 740 925 sha256 = "0w1n67glpv8241vnpz1kl14sy7zlnw414aqwj4hcx5nd86f6994q"; 741 926 }) 742 - 743 927 (fetchNuGet { 744 - name = "System.Reflection.Emit.Lightweight"; 928 + name = "system.reflection.emit.lightweight"; 929 + version = "4.0.1"; 930 + sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 931 + }) 932 + (fetchNuGet { 933 + name = "system.reflection.emit.lightweight"; 745 934 version = "4.3.0"; 746 935 sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; 747 936 }) 748 - 749 937 (fetchNuGet { 750 - name = "System.Reflection.Extensions"; 938 + name = "system.reflection.extensions"; 751 939 version = "4.0.1"; 752 940 sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; 753 941 }) 754 - 755 942 (fetchNuGet { 756 - name = "System.Reflection.Extensions"; 943 + name = "system.reflection.extensions"; 944 + version = "4.0.1-rc2-24027"; 945 + sha256 = "0lgz7wwdb02vapa17hgdkf1jnq1mcsbq8gwy6a9iqd04d2mfanv7"; 946 + }) 947 + (fetchNuGet { 948 + name = "system.reflection.extensions"; 757 949 version = "4.3.0"; 758 950 sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; 759 951 }) 760 - 761 952 (fetchNuGet { 762 - name = "System.Reflection.Metadata"; 953 + name = "system.reflection.metadata"; 763 954 version = "1.3.0"; 764 955 sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b"; 765 956 }) 766 - 767 957 (fetchNuGet { 768 - name = "System.Reflection.Primitives"; 958 + name = "system.reflection.primitives"; 769 959 version = "4.0.1"; 770 960 sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; 771 961 }) 772 - 962 + (fetchNuGet { 963 + name = "system.reflection.primitives"; 964 + version = "4.0.1-rc2-24027"; 965 + sha256 = "1xjbwji89s69f9lq8wcjfkz8y9ym9zffgj2mg9bv0rxwyqcynpz8"; 966 + }) 773 967 (fetchNuGet { 774 - name = "System.Reflection.Primitives"; 968 + name = "system.reflection.primitives"; 775 969 version = "4.3.0"; 776 970 sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; 777 971 }) 778 - 779 972 (fetchNuGet { 780 - name = "System.Reflection.TypeExtensions"; 781 - version = "4.1.0"; 782 - sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; 783 - }) 784 - 785 - (fetchNuGet { 786 - name = "System.Reflection.TypeExtensions"; 973 + name = "system.reflection.typeextensions"; 787 974 version = "4.3.0"; 788 975 sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; 789 976 }) 790 - 791 977 (fetchNuGet { 792 - name = "System.Reflection.TypeExtensions"; 978 + name = "system.reflection.typeextensions"; 793 979 version = "4.4.0"; 794 980 sha256 = "0n9r1w4lp2zmadyqkgp4sk9wy90sj4ygq4dh7kzamx26i9biys5h"; 795 981 }) 796 - 797 982 (fetchNuGet { 798 - name = "System.Resources.ResourceManager"; 983 + name = "system.resources.resourcemanager"; 799 984 version = "4.0.1"; 800 985 sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; 801 986 }) 802 - 803 987 (fetchNuGet { 804 - name = "System.Resources.ResourceManager"; 988 + name = "system.resources.resourcemanager"; 989 + version = "4.0.1-rc2-24027"; 990 + sha256 = "06lkqk5hjkcna19inpda5fqbxvd9pq5cs61di7kmhrd2sgzbs6xj"; 991 + }) 992 + (fetchNuGet { 993 + name = "system.resources.resourcemanager"; 805 994 version = "4.3.0"; 806 995 sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; 807 996 }) 808 - 809 997 (fetchNuGet { 810 - name = "System.Runtime"; 998 + name = "system.runtime"; 811 999 version = "4.1.0"; 812 1000 sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; 813 1001 }) 814 - 1002 + (fetchNuGet { 1003 + name = "system.runtime"; 1004 + version = "4.1.0-rc2-24027"; 1005 + sha256 = "1g5ghiyfb8njzfz39cswizjbxgaamil7kgkzgab93fhgk7jksmyg"; 1006 + }) 815 1007 (fetchNuGet { 816 - name = "System.Runtime"; 1008 + name = "system.runtime"; 817 1009 version = "4.3.0"; 818 1010 sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; 819 1011 }) 820 - 821 1012 (fetchNuGet { 822 - name = "System.Runtime.Extensions"; 1013 + name = "system.runtime.extensions"; 823 1014 version = "4.1.0"; 824 1015 sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; 825 1016 }) 826 - 827 1017 (fetchNuGet { 828 - name = "System.Runtime.Extensions"; 1018 + name = "system.runtime.extensions"; 1019 + version = "4.1.0-rc2-24027"; 1020 + sha256 = "09k4c6is31dpccwgb749055m2ad0b84rnapk69fmj3wjswacg26p"; 1021 + }) 1022 + (fetchNuGet { 1023 + name = "system.runtime.extensions"; 829 1024 version = "4.3.0"; 830 1025 sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; 831 1026 }) 832 - 833 1027 (fetchNuGet { 834 - name = "System.Runtime.Handles"; 1028 + name = "system.runtime.handles"; 835 1029 version = "4.0.1"; 836 1030 sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; 837 1031 }) 838 - 839 1032 (fetchNuGet { 840 - name = "System.Runtime.Handles"; 1033 + name = "system.runtime.handles"; 1034 + version = "4.0.1-rc2-24027"; 1035 + sha256 = "0lw4amgaryahvija5xxb2vmybq7ks4b4ir7g7nc1xw6x9x58jf2q"; 1036 + }) 1037 + (fetchNuGet { 1038 + name = "system.runtime.handles"; 841 1039 version = "4.3.0"; 842 1040 sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; 843 1041 }) 844 - 845 1042 (fetchNuGet { 846 - name = "System.Runtime.InteropServices"; 1043 + name = "system.runtime.interopservices"; 847 1044 version = "4.1.0"; 848 1045 sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; 849 1046 }) 850 - 1047 + (fetchNuGet { 1048 + name = "system.runtime.interopservices"; 1049 + version = "4.1.0-rc2-24027"; 1050 + sha256 = "0v5phdy7yr6d1q13fvb6hhd32k89l93z6x4hlkh5qhm1zlavaabl"; 1051 + }) 851 1052 (fetchNuGet { 852 - name = "System.Runtime.InteropServices"; 1053 + name = "system.runtime.interopservices"; 853 1054 version = "4.3.0"; 854 1055 sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; 855 1056 }) 856 - 1057 + (fetchNuGet { 1058 + name = "system.runtime.interopservices.pinvoke"; 1059 + version = "4.0.0-rc2-24027"; 1060 + sha256 = "0qsgwvr6ppvllblb64p5plr7ssbmwfxxc4qf6l1xfincza8np34r"; 1061 + }) 857 1062 (fetchNuGet { 858 - name = "System.Runtime.InteropServices.RuntimeInformation"; 1063 + name = "system.runtime.interopservices.runtimeinformation"; 859 1064 version = "4.0.0"; 860 1065 sha256 = "0glmvarf3jz5xh22iy3w9v3wyragcm4hfdr17v90vs7vcrm7fgp6"; 861 1066 }) 862 - 1067 + (fetchNuGet { 1068 + name = "system.runtime.interopservices.runtimeinformation"; 1069 + version = "4.0.0-rc2-24027"; 1070 + sha256 = "03pgqbgahfgvigyrsd08snzsryg90shfjlbdv4jk6yzfr27va3n2"; 1071 + }) 863 1072 (fetchNuGet { 864 - name = "System.Runtime.InteropServices.RuntimeInformation"; 1073 + name = "system.runtime.interopservices.runtimeinformation"; 865 1074 version = "4.3.0"; 866 1075 sha256 = "0q18r1sh4vn7bvqgd6dmqlw5v28flbpj349mkdish2vjyvmnb2ii"; 867 1076 }) 868 - 869 1077 (fetchNuGet { 870 - name = "System.Runtime.Loader"; 1078 + name = "system.runtime.loader"; 871 1079 version = "4.0.0"; 872 1080 sha256 = "0lpfi3psqcp6zxsjk2qyahal7zaawviimc8lhrlswhip2mx7ykl0"; 873 1081 }) 874 - 875 1082 (fetchNuGet { 876 - name = "System.Runtime.Loader"; 1083 + name = "system.runtime.loader"; 877 1084 version = "4.3.0"; 878 1085 sha256 = "07fgipa93g1xxgf7193a6vw677mpzgr0z0cfswbvqqb364cva8dk"; 879 1086 }) 880 - 881 1087 (fetchNuGet { 882 - name = "System.Runtime.Numerics"; 1088 + name = "system.runtime.numerics"; 1089 + version = "4.0.1"; 1090 + sha256 = "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn"; 1091 + }) 1092 + (fetchNuGet { 1093 + name = "system.runtime.numerics"; 1094 + version = "4.0.1-rc2-24027"; 1095 + sha256 = "1gkkc7njymmb12dd952q89x2h2jdrhp171vszsjqzh5q2ryj25gh"; 1096 + }) 1097 + (fetchNuGet { 1098 + name = "system.runtime.numerics"; 883 1099 version = "4.3.0"; 884 1100 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 885 1101 }) 886 - 887 1102 (fetchNuGet { 888 - name = "System.Runtime.Serialization.Json"; 1103 + name = "system.runtime.serialization.json"; 889 1104 version = "4.0.2"; 890 1105 sha256 = "08ypbzs0sb302ga04ds5b2wxa2gg0q50zpa0nvc87ipjhs0v66dn"; 891 1106 }) 892 - 893 1107 (fetchNuGet { 894 - name = "System.Runtime.Serialization.Primitives"; 1108 + name = "system.runtime.serialization.primitives"; 895 1109 version = "4.1.1"; 896 1110 sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; 897 1111 }) 898 - 899 1112 (fetchNuGet { 900 - name = "System.Runtime.Serialization.Primitives"; 1113 + name = "system.runtime.serialization.primitives"; 901 1114 version = "4.3.0"; 902 1115 sha256 = "01vv2p8h4hsz217xxs0rixvb7f2xzbh6wv1gzbfykcbfrza6dvnf"; 903 1116 }) 904 - 905 1117 (fetchNuGet { 906 - name = "System.Runtime.Serialization.Xml"; 1118 + name = "system.runtime.serialization.xml"; 907 1119 version = "4.3.0"; 908 1120 sha256 = "1b2cxl2h7s8cydbhbmxhvvq071n9ck61g08npg4gyw7nvg37rfni"; 909 1121 }) 910 - 911 1122 (fetchNuGet { 912 - name = "System.Security.AccessControl"; 1123 + name = "system.security.accesscontrol"; 913 1124 version = "4.4.0"; 914 1125 sha256 = "0ixqw47krkazsw0ycm22ivkv7dpg6cjz8z8g0ii44bsx4l8gcx17"; 915 1126 }) 916 - 917 1127 (fetchNuGet { 918 - name = "System.Security.Claims"; 1128 + name = "system.security.claims"; 919 1129 version = "4.3.0"; 920 1130 sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; 921 1131 }) 922 - 923 1132 (fetchNuGet { 924 - name = "System.Security.Cryptography.Algorithms"; 1133 + name = "system.security.cryptography.algorithms"; 1134 + version = "4.1.0-rc2-24027"; 1135 + sha256 = "183qanczf0jb6njgr9pibyr5jh0m8xwrja3j0pcdnzab0cii3n17"; 1136 + }) 1137 + (fetchNuGet { 1138 + name = "system.security.cryptography.algorithms"; 925 1139 version = "4.2.0"; 926 1140 sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; 927 1141 }) 928 - 929 1142 (fetchNuGet { 930 - name = "System.Security.Cryptography.Algorithms"; 1143 + name = "system.security.cryptography.algorithms"; 931 1144 version = "4.3.0"; 932 1145 sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; 933 1146 }) 934 - 1147 + (fetchNuGet { 1148 + name = "system.security.cryptography.cng"; 1149 + version = "4.2.0"; 1150 + sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc"; 1151 + }) 935 1152 (fetchNuGet { 936 - name = "System.Security.Cryptography.Cng"; 1153 + name = "system.security.cryptography.cng"; 937 1154 version = "4.3.0"; 938 1155 sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; 939 1156 }) 940 - 941 1157 (fetchNuGet { 942 - name = "System.Security.Cryptography.Cng"; 1158 + name = "system.security.cryptography.cng"; 943 1159 version = "4.4.0"; 944 1160 sha256 = "1grg9id80m358crr5y4q4rhhbrm122yw8jrlcl1ybi7nkmmck40n"; 945 1161 }) 946 - 947 1162 (fetchNuGet { 948 - name = "System.Security.Cryptography.Csp"; 1163 + name = "system.security.cryptography.csp"; 1164 + version = "4.0.0"; 1165 + sha256 = "1cwv8lqj8r15q81d2pz2jwzzbaji0l28xfrpw29kdpsaypm92z2q"; 1166 + }) 1167 + (fetchNuGet { 1168 + name = "system.security.cryptography.csp"; 1169 + version = "4.0.0-rc2-24027"; 1170 + sha256 = "0nny9yvnhf3l5hjsy3ina8cha6sjln993vzkzdqka9d7rq1z23d5"; 1171 + }) 1172 + (fetchNuGet { 1173 + name = "system.security.cryptography.csp"; 949 1174 version = "4.3.0"; 950 1175 sha256 = "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1"; 951 1176 }) 952 - 1177 + (fetchNuGet { 1178 + name = "system.security.cryptography.encoding"; 1179 + version = "4.0.0"; 1180 + sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; 1181 + }) 1182 + (fetchNuGet { 1183 + name = "system.security.cryptography.encoding"; 1184 + version = "4.0.0-rc2-24027"; 1185 + sha256 = "19f83159vrfnfppzchjclk82w2x1mkvnx1y5yg1f238dpjb2ri8w"; 1186 + }) 953 1187 (fetchNuGet { 954 - name = "System.Security.Cryptography.Encoding"; 1188 + name = "system.security.cryptography.encoding"; 955 1189 version = "4.3.0"; 956 1190 sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; 957 1191 }) 958 - 1192 + (fetchNuGet { 1193 + name = "system.security.cryptography.openssl"; 1194 + version = "4.0.0"; 1195 + sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q"; 1196 + }) 1197 + (fetchNuGet { 1198 + name = "system.security.cryptography.openssl"; 1199 + version = "4.0.0-rc2-24027"; 1200 + sha256 = "1mqw7xkh4pj110f249c4jpv9mg1sd8c2cr6kj2zc0mic325vvg0s"; 1201 + }) 959 1202 (fetchNuGet { 960 - name = "System.Security.Cryptography.OpenSsl"; 1203 + name = "system.security.cryptography.openssl"; 961 1204 version = "4.3.0"; 962 1205 sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; 963 1206 }) 964 - 965 1207 (fetchNuGet { 966 - name = "System.Security.Cryptography.Pkcs"; 1208 + name = "system.security.cryptography.pkcs"; 967 1209 version = "4.4.0"; 968 1210 sha256 = "1bn7d2czpc994qzdph4drv7p1cv4x55j2dhbmr113p0gs4hx33zh"; 969 1211 }) 970 - 1212 + (fetchNuGet { 1213 + name = "system.security.cryptography.primitives"; 1214 + version = "4.0.0"; 1215 + sha256 = "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh"; 1216 + }) 971 1217 (fetchNuGet { 972 - name = "System.Security.Cryptography.Primitives"; 1218 + name = "system.security.cryptography.primitives"; 1219 + version = "4.0.0-rc2-24027"; 1220 + sha256 = "16zwyw3glsq2flq1crd0c24i336bc42rj28a9rjvvkg428vz4rf8"; 1221 + }) 1222 + (fetchNuGet { 1223 + name = "system.security.cryptography.primitives"; 973 1224 version = "4.3.0"; 974 1225 sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; 975 1226 }) 976 - 977 1227 (fetchNuGet { 978 - name = "System.Security.Cryptography.ProtectedData"; 1228 + name = "system.security.cryptography.protecteddata"; 979 1229 version = "4.4.0"; 980 1230 sha256 = "1q8ljvqhasyynp94a1d7jknk946m20lkwy2c3wa8zw2pc517fbj6"; 981 1231 }) 982 - 1232 + (fetchNuGet { 1233 + name = "system.security.cryptography.x509certificates"; 1234 + version = "4.1.0"; 1235 + sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh"; 1236 + }) 1237 + (fetchNuGet { 1238 + name = "system.security.cryptography.x509certificates"; 1239 + version = "4.1.0-rc2-24027"; 1240 + sha256 = "1gfxc9p73zak46klrfsyxgkcyzbvqnjarsm0wkvmj31n9g4dpjkz"; 1241 + }) 983 1242 (fetchNuGet { 984 - name = "System.Security.Cryptography.X509Certificates"; 1243 + name = "system.security.cryptography.x509certificates"; 985 1244 version = "4.3.0"; 986 1245 sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; 987 1246 }) 988 - 989 1247 (fetchNuGet { 990 - name = "System.Security.Principal"; 1248 + name = "system.security.principal"; 991 1249 version = "4.3.0"; 992 1250 sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; 993 1251 }) 994 - 995 1252 (fetchNuGet { 996 - name = "System.Security.Principal.Windows"; 1253 + name = "system.security.principal.windows"; 997 1254 version = "4.3.0"; 998 1255 sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; 999 1256 }) 1000 - 1001 1257 (fetchNuGet { 1002 - name = "System.Security.Principal.Windows"; 1258 + name = "system.security.principal.windows"; 1003 1259 version = "4.4.0"; 1004 1260 sha256 = "11rr16fp68apc0arsymgj18w8ajs9a4366wgx9iqwny4glrl20wp"; 1005 1261 }) 1006 - 1007 1262 (fetchNuGet { 1008 - name = "System.ServiceProcess.ServiceController"; 1263 + name = "system.serviceprocess.servicecontroller"; 1009 1264 version = "4.4.0"; 1010 1265 sha256 = "0hyijvysbcjh20mbbgajg9wh04nkjd6y5lqxgm0a6m28zjcjshl6"; 1011 1266 }) 1012 - 1013 1267 (fetchNuGet { 1014 - name = "System.Text.Encoding"; 1268 + name = "system.text.encoding"; 1015 1269 version = "4.0.11"; 1016 1270 sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; 1017 1271 }) 1018 - 1019 1272 (fetchNuGet { 1020 - name = "System.Text.Encoding"; 1273 + name = "system.text.encoding"; 1274 + version = "4.0.11-rc2-24027"; 1275 + sha256 = "0qkaldb06dwmi8gb940h75n9cs5rgy6sqcpa6f443mhahmagmsbd"; 1276 + }) 1277 + (fetchNuGet { 1278 + name = "system.text.encoding"; 1021 1279 version = "4.3.0"; 1022 1280 sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; 1023 1281 }) 1024 - 1025 1282 (fetchNuGet { 1026 - name = "System.Text.Encoding.CodePages"; 1283 + name = "system.text.encoding.codepages"; 1027 1284 version = "4.4.0"; 1028 1285 sha256 = "07bzjnflxjk9vgpljfybrpqmvsr9qr2f20nq5wf11imwa5pbhgfc"; 1029 1286 }) 1030 - 1031 1287 (fetchNuGet { 1032 - name = "System.Text.Encoding.Extensions"; 1288 + name = "system.text.encoding.extensions"; 1033 1289 version = "4.0.11"; 1034 1290 sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 1035 1291 }) 1036 - 1292 + (fetchNuGet { 1293 + name = "system.text.encoding.extensions"; 1294 + version = "4.0.11-rc2-24027"; 1295 + sha256 = "02xic3hhfy48s50bxh25as1l9v3afgrhlxqfnd5ki4qirxly7qs6"; 1296 + }) 1037 1297 (fetchNuGet { 1038 - name = "System.Text.Encoding.Extensions"; 1298 + name = "system.text.encoding.extensions"; 1039 1299 version = "4.3.0"; 1040 1300 sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; 1041 1301 }) 1042 - 1043 1302 (fetchNuGet { 1044 - name = "System.Text.RegularExpressions"; 1303 + name = "system.text.regularexpressions"; 1304 + version = "4.0.12-rc2-24027"; 1305 + sha256 = "1111sgvbxrxq9c1i0nziqddlzfdc2bsawd0jcf2nna9nkcn4d6br"; 1306 + }) 1307 + (fetchNuGet { 1308 + name = "system.text.regularexpressions"; 1309 + version = "4.1.0"; 1310 + sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 1311 + }) 1312 + (fetchNuGet { 1313 + name = "system.text.regularexpressions"; 1045 1314 version = "4.3.0"; 1046 1315 sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; 1047 1316 }) 1048 - 1049 1317 (fetchNuGet { 1050 - name = "System.Threading"; 1318 + name = "system.threading"; 1051 1319 version = "4.0.11"; 1052 1320 sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; 1053 1321 }) 1054 - 1322 + (fetchNuGet { 1323 + name = "system.threading"; 1324 + version = "4.0.11-rc2-24027"; 1325 + sha256 = "0aa4zaqma4yagjd44m2j13gr9qzn8rv8dbz3p9mjdk0dx1zpi4iq"; 1326 + }) 1055 1327 (fetchNuGet { 1056 - name = "System.Threading"; 1328 + name = "system.threading"; 1057 1329 version = "4.3.0"; 1058 1330 sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 1059 1331 }) 1060 - 1061 1332 (fetchNuGet { 1062 - name = "System.Threading.Channels"; 1333 + name = "system.threading.channels"; 1063 1334 version = "4.5.0"; 1064 1335 sha256 = "0n6z3wjia7h2a5vl727p97riydnb6jhhkb1pdcnizza02dwkz0nz"; 1065 1336 }) 1066 - 1337 + (fetchNuGet { 1338 + name = "system.threading.overlapped"; 1339 + version = "4.0.1-rc2-24027"; 1340 + sha256 = "1ansaxwkc4xi2ngpiv8gjmv02d75y0nb4lfqzxy73r3radakqvdp"; 1341 + }) 1067 1342 (fetchNuGet { 1068 - name = "System.Threading.Tasks"; 1343 + name = "system.threading.tasks"; 1069 1344 version = "4.0.11"; 1070 1345 sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; 1071 1346 }) 1072 - 1073 1347 (fetchNuGet { 1074 - name = "System.Threading.Tasks"; 1348 + name = "system.threading.tasks"; 1349 + version = "4.0.11-rc2-24027"; 1350 + sha256 = "0fsgdzdxm3yj1cym421ymn8x8anhyzgzc1529q5xd1vq4yknwfq0"; 1351 + }) 1352 + (fetchNuGet { 1353 + name = "system.threading.tasks"; 1075 1354 version = "4.3.0"; 1076 1355 sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; 1077 1356 }) 1078 - 1079 1357 (fetchNuGet { 1080 - name = "System.Threading.Tasks.Extensions"; 1358 + name = "system.threading.tasks.extensions"; 1359 + version = "4.0.0"; 1360 + sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 1361 + }) 1362 + (fetchNuGet { 1363 + name = "system.threading.tasks.extensions"; 1364 + version = "4.0.0-rc2-24027"; 1365 + sha256 = "108sdqpy3ga6gzksl59w1k21a3jlrh8x2igyxh3dm3212rca1pyg"; 1366 + }) 1367 + (fetchNuGet { 1368 + name = "system.threading.tasks.extensions"; 1081 1369 version = "4.3.0"; 1082 1370 sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 1083 1371 }) 1084 - 1085 1372 (fetchNuGet { 1086 - name = "System.Threading.Tasks.Extensions"; 1373 + name = "system.threading.tasks.extensions"; 1087 1374 version = "4.5.1"; 1088 1375 sha256 = "1ikrplvw4m6pzjbq3bfbpr572n4i9mni577zvmrkaygvx85q3myw"; 1089 1376 }) 1090 - 1091 1377 (fetchNuGet { 1092 - name = "System.Threading.Thread"; 1378 + name = "system.threading.thread"; 1093 1379 version = "4.0.0"; 1094 1380 sha256 = "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc"; 1095 1381 }) 1096 - 1097 1382 (fetchNuGet { 1098 - name = "System.Threading.ThreadPool"; 1099 - version = "4.0.10"; 1100 - sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; 1383 + name = "system.threading.thread"; 1384 + version = "4.0.0-rc2-24027"; 1385 + sha256 = "1gv963m4523m3m9gbn819bfzmhxqsv93m5kaqmbv4ijyziby2872"; 1101 1386 }) 1102 - 1103 1387 (fetchNuGet { 1104 - name = "System.Threading.ThreadPool"; 1388 + name = "system.threading.threadpool"; 1105 1389 version = "4.3.0"; 1106 1390 sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; 1107 1391 }) 1108 - 1392 + (fetchNuGet { 1393 + name = "system.threading.timer"; 1394 + version = "4.0.1"; 1395 + sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; 1396 + }) 1109 1397 (fetchNuGet { 1110 - name = "System.Threading.Timer"; 1398 + name = "system.threading.timer"; 1399 + version = "4.0.1-rc2-24027"; 1400 + sha256 = "06kwi42lgf3zw3b5yw668ammbjl6208y182wyqaaqrxgn5gs4yh7"; 1401 + }) 1402 + (fetchNuGet { 1403 + name = "system.threading.timer"; 1111 1404 version = "4.3.0"; 1112 1405 sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; 1113 1406 }) 1114 - 1115 1407 (fetchNuGet { 1116 - name = "System.Xml.ReaderWriter"; 1408 + name = "system.xml.readerwriter"; 1117 1409 version = "4.0.11"; 1118 1410 sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; 1119 1411 }) 1120 - 1412 + (fetchNuGet { 1413 + name = "system.xml.readerwriter"; 1414 + version = "4.0.11-rc2-24027"; 1415 + sha256 = "0vywggi6mqkbr6g1a1fh821hqfnyq1k829vlhfw908l7mj75k34d"; 1416 + }) 1121 1417 (fetchNuGet { 1122 - name = "System.Xml.ReaderWriter"; 1418 + name = "system.xml.readerwriter"; 1123 1419 version = "4.3.0"; 1124 1420 sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 1125 1421 }) 1126 - 1422 + (fetchNuGet { 1423 + name = "system.xml.xdocument"; 1424 + version = "4.0.11"; 1425 + sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 1426 + }) 1427 + (fetchNuGet { 1428 + name = "system.xml.xdocument"; 1429 + version = "4.0.11-rc2-24027"; 1430 + sha256 = "1rvglifac6xq1lawm78w49fq9cl8zvs1g4vrsd2hhf0vb4i85p1z"; 1431 + }) 1127 1432 (fetchNuGet { 1128 - name = "System.Xml.XDocument"; 1433 + name = "system.xml.xdocument"; 1129 1434 version = "4.3.0"; 1130 1435 sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 1131 1436 }) 1132 - 1133 1437 (fetchNuGet { 1134 - name = "System.Xml.XmlDocument"; 1438 + name = "system.xml.xmldocument"; 1135 1439 version = "4.0.1"; 1136 1440 sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; 1137 1441 }) 1138 - 1139 1442 (fetchNuGet { 1140 - name = "System.Xml.XmlDocument"; 1443 + name = "system.xml.xmldocument"; 1141 1444 version = "4.3.0"; 1142 1445 sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; 1143 1446 }) 1144 - 1447 + (fetchNuGet { 1448 + name = "system.xml.xmlserializer"; 1449 + version = "4.0.11"; 1450 + sha256 = "01nzc3gdslw90qfykq4qzr2mdnqxjl4sj0wp3fixiwdmlmvpib5z"; 1451 + }) 1145 1452 (fetchNuGet { 1146 - name = "System.Xml.XmlSerializer"; 1453 + name = "system.xml.xmlserializer"; 1147 1454 version = "4.3.0"; 1148 1455 sha256 = "07pa4sx196vxkgl3csvdmw94nydlsm9ir38xxcs84qjn8cycd912"; 1149 1456 }) 1150 - 1151 1457 (fetchNuGet { 1152 - name = "System.Xml.XPath"; 1458 + name = "system.xml.xpath"; 1153 1459 version = "4.0.1"; 1154 1460 sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; 1155 1461 }) 1156 - 1157 1462 (fetchNuGet { 1158 - name = "System.Xml.XPath.XmlDocument"; 1463 + name = "system.xml.xpath.xmldocument"; 1159 1464 version = "4.0.1"; 1160 1465 sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc"; 1161 1466 }) 1162 - 1163 1467 (fetchNuGet { 1164 1468 name = "xunit"; 1165 1469 version = "2.4.1"; 1166 1470 sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20"; 1167 1471 }) 1168 - 1169 1472 (fetchNuGet { 1170 1473 name = "xunit.abstractions"; 1171 1474 version = "2.0.3"; 1172 1475 sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; 1173 1476 }) 1174 - 1175 1477 (fetchNuGet { 1176 1478 name = "xunit.analyzers"; 1177 1479 version = "0.10.0"; 1178 1480 sha256 = "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j"; 1179 1481 }) 1180 - 1181 1482 (fetchNuGet { 1182 1483 name = "xunit.assert"; 1183 1484 version = "2.4.1"; 1184 1485 sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6"; 1185 1486 }) 1186 - 1187 1487 (fetchNuGet { 1188 1488 name = "xunit.core"; 1189 1489 version = "2.4.1"; 1190 1490 sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a"; 1191 1491 }) 1192 - 1193 1492 (fetchNuGet { 1194 1493 name = "xunit.extensibility.core"; 1195 1494 version = "2.4.1"; 1196 1495 sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050"; 1197 1496 }) 1198 - 1199 1497 (fetchNuGet { 1200 1498 name = "xunit.extensibility.execution"; 1201 1499 version = "2.4.1"; 1202 1500 sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia"; 1203 1501 }) 1204 - 1205 1502 (fetchNuGet { 1206 1503 name = "xunit.runner.visualstudio"; 1207 1504 version = "2.4.1"; 1208 1505 sha256 = "0fln5pk18z98gp0zfshy1p9h6r9wc55nyqhap34k89yran646vhn"; 1209 1506 }) 1210 - 1211 1507 (fetchNuGet { 1212 - name = "YamlDotNet.Signed"; 1508 + name = "yamldotnet.signed"; 1213 1509 version = "5.3.0"; 1214 1510 sha256 = "1gnp5aa2zzg7v61bbn2ra1npy0p07szp5w8vqk44fdj3fcvrdxib"; 1215 1511 }) 1216 - 1217 1512 ]
+3 -3
pkgs/development/tools/fnm/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "fnm"; 5 - version = "1.26.0"; 5 + version = "1.27.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Schniz"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-wKtgMUt7QquT6mS3AI+XrZqbJOZxj6jlJi+7uC9w7xU="; 11 + sha256 = "sha256-4qnisgWhdAWZda8iy9nkph7//bVKJuUeEDS1GaAx+FQ="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles ]; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 17 18 - cargoSha256 = "sha256-TMhhCVVFTanKdbDp7L3ZaiNohWo5a/jFbQjdRiBlCkk="; 18 + cargoSha256 = "sha256-f3wzuXH2ByXHHOq3zLaMtYm2HJ4BzmZe2e6DQ3V7qVo="; 19 19 20 20 doCheck = false; 21 21
+3 -3
pkgs/development/tools/parinfer-rust/default.nix
··· 21 21 mkdir -p $out/share/kak/autoload/plugins 22 22 cp rc/parinfer.kak $out/share/kak/autoload/plugins/ 23 23 24 - rtpPath=$out/share/vim-plugins/parinfer-rust 25 - mkdir -p $rtpPath/plugin 24 + rtpPath=$out/plugin 25 + mkdir -p $rtpPath 26 26 sed "s,let s:libdir = .*,let s:libdir = '${placeholder "out"}/lib'," \ 27 - plugin/parinfer.vim >$rtpPath/plugin/parinfer.vim 27 + plugin/parinfer.vim > $rtpPath/parinfer.vim 28 28 ''; 29 29 30 30 meta = with lib; {
+3 -3
pkgs/development/web/deno/default.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "deno"; 20 - version = "1.13.2"; 20 + version = "1.14.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "denoland"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-qAUQOTqVNTUSmKXoCwId4Bm6ashLLpY0QEWr8gyXxR4="; 26 + sha256 = "sha256-AVWQDFw/kof8rxKCs9N5efNDRe6TGseD6g1QAf02fx0="; 27 27 }; 28 - cargoSha256 = "sha256-pwP5XbWuK0g45zmamWUO9kiY8gzoNqk7nC7aGTCFhyY="; 28 + cargoSha256 = "sha256-MjmnKypvnPKhU5qZFGNVAz1hK3VkHudRwSPxciobuJU="; 29 29 30 30 # Install completions post-install 31 31 nativeBuildInputs = [ installShellFiles ];
+5 -5
pkgs/development/web/deno/librusty_v8.nix
··· 11 11 }; 12 12 in 13 13 fetch_librusty_v8 { 14 - version = "0.26.0"; 14 + version = "0.28.0"; 15 15 shas = { 16 - x86_64-linux = "sha256-eYvfsgkLuV//4NmnxTNgB5vGoQ2JdSpXwF34d1kNxBw="; 17 - aarch64-linux = "sha256-t+0/bJI4q2XElYz398aig/widJEOAascOmv4qnnKMQY="; 18 - x86_64-darwin = "sha256-lYJcx5Oe/nuF3l5coH4WIMbBbiFMwxNWlIYojrdiJfI="; 19 - aarch64-darwin = "sha256-5blisZ4Z/f68fZg7aDr5WK4MNvL5IRZZSJrvFb9N5oY="; 16 + x86_64-linux = "sha256-Kz2sAAUux1BcrU2vukGybSs+REAIRUWMxqZakRPEeic="; 17 + aarch64-linux = "sha256-QXj9y6NrvxU6oL9QO2dYH4Fz+MbTzON7w8sTCei7Mqs="; 18 + x86_64-darwin = "sha256-zW1g3DZ4Mh4j3UYE312dDkbX6ngg50GaKCHYPa6H0Dk="; 19 + aarch64-darwin = "sha256-hLIRxApjTbkfDVPhK3EC7X/p6uQK5kOEILZfAmFV5AA="; 20 20 }; 21 21 }
+2 -2
pkgs/games/osu-lazer/deps.nix
··· 65 65 (fetchNuGet { name = "Markdig"; version = "0.25.0"; sha256 = "1f7iqkaphfyf6szjrp0633rj44wynqgiqyivbja5djyxjy4csfyy"; }) 66 66 (fetchNuGet { name = "MessagePack"; version = "2.3.75"; sha256 = "0mcpxym6g47lyfalnr27mmavmgmd46k6f9g7id8cn1anbbvd4xv1"; }) 67 67 (fetchNuGet { name = "MessagePack.Annotations"; version = "2.3.75"; sha256 = "06a1ys161gvw1sr771w909gwd1y4dizdvldknkhy8484drj90prd"; }) 68 - (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "5.0.5"; sha256 = "026m19pddhkx5idwpi6mp1yl9yfcfgm2qjp1jh54mdja1d7ng0vk"; }) 68 + (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "5.0.10"; sha256 = "1zlcdqscbgqz5yqfgn21l711ybplid97c6wg0gqbbd6920qmpidd"; }) 69 69 (fetchNuGet { name = "Microsoft.AspNetCore.Connections.Abstractions"; version = "5.0.8"; sha256 = "13k0p0k1gqk12hnxj4l5yjbyv8y51ggkybrqjjr3yf3411vyy4q2"; }) 70 70 (fetchNuGet { name = "Microsoft.AspNetCore.Http.Connections.Client"; version = "5.0.8"; sha256 = "0rladdnd7g8gh7hj5gbrcp3dlspngad4xhgk0qmpzhlc3qr4snf2"; }) 71 71 (fetchNuGet { name = "Microsoft.AspNetCore.Http.Connections.Common"; version = "5.0.8"; sha256 = "03d2ydy7zap5hri7k1f30d1i9jaqj0nijwgp2z6b36gwqck9rys7"; }) ··· 124 124 (fetchNuGet { name = "Microsoft.Extensions.Primitives"; version = "2.2.0"; sha256 = "0znah6arbcqari49ymigg3wiy2hgdifz8zsq8vdc3ynnf45r7h0c"; }) 125 125 (fetchNuGet { name = "Microsoft.Extensions.Primitives"; version = "5.0.0"; sha256 = "0swqcknyh87ns82w539z1mvy804pfwhgzs97cr3nwqk6g5s42gd6"; }) 126 126 (fetchNuGet { name = "Microsoft.Extensions.Primitives"; version = "5.0.1"; sha256 = "01ar5ba2sal9wnpa1xnnikhgb37vzhg2cspz45wf760jflpai2vv"; }) 127 - (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "5.0.5"; sha256 = "1h5yry6k9bpqqis2fb1901csb8kipm7anm174fjj41r317vzfjfa"; }) 127 + (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "5.0.10"; sha256 = "1b3lm6dc31yl9r0rian7zcmhpn949dyp4yhw4fsl4bkdpp4id085"; }) 128 128 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 129 129 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 130 130 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "2.0.0"; sha256 = "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0"; })
+1 -1
pkgs/misc/emulators/punes/default.nix
··· 54 54 }; 55 55 56 56 meta = with lib; { 57 - description = "Qt-based Nintendo Entertaiment System emulator and NSF/NSFe Music Player"; 57 + description = "Qt-based Nintendo Entertainment System emulator and NSF/NSFe Music Player"; 58 58 homepage = "https://github.com/punesemu/puNES"; 59 59 license = licenses.gpl2Plus; 60 60 maintainers = with maintainers; [ OPNA2608 ];
+8 -8
pkgs/misc/emulators/ryujinx/deps.nix
··· 12 12 (fetchNuGet { name = "GtkSharp"; version = "3.22.25.128"; sha256 = "0z0wx0p3gc02r8d7y88k1rw307sb2vapbr1k1yc5qdc38fxz5jsy"; }) 13 13 (fetchNuGet { name = "GtkSharp.Dependencies"; version = "1.1.0"; sha256 = "1g1rhcn38ww97638rds6l5bysra43hkhv47fy71fvq89623zgyxn"; }) 14 14 (fetchNuGet { name = "LibHac"; version = "0.12.0"; sha256 = "08r9b9cdcbz6339sw8r5dfy2a8iw53df0j3xq9rygkg02xspimld"; }) 15 - (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "5.0.5"; sha256 = "026m19pddhkx5idwpi6mp1yl9yfcfgm2qjp1jh54mdja1d7ng0vk"; }) 16 - (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "5.0.5"; sha256 = "09nsi9fa8kb3jpnim0hdap3jabskvpr4fmpvnj5wsh3gp91vqvgb"; }) 17 - (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "5.0.5"; sha256 = "10g2vdsz685agqbd7h7dd9gvs584prpai0zv37r59wzlynj1assl"; }) 15 + (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "5.0.10"; sha256 = "1zlcdqscbgqz5yqfgn21l711ybplid97c6wg0gqbbd6920qmpidd"; }) 16 + (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "5.0.10"; sha256 = "0ir75jh4qas1v70y63hvd0rbyprcf97l47b2pgljhxk138z96s4y"; }) 17 + (fetchNuGet { name = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "5.0.10"; sha256 = "0qhyrprvbhcn980ycqvkchd4qy5shydi7pl0lbcl9cljivn60if3"; }) 18 18 (fetchNuGet { name = "Microsoft.CodeCoverage"; version = "16.8.0"; sha256 = "1y05sjk7wgd29a47v1yhn2s1lrd8wgazkilvmjbvivmrrm3fqjs8"; }) 19 19 (fetchNuGet { name = "Microsoft.CSharp"; version = "4.0.1"; sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; }) 20 20 (fetchNuGet { name = "Microsoft.DotNet.InternalAbstractions"; version = "1.0.0"; sha256 = "0mp8ihqlb7fsa789frjzidrfjc1lrhk88qp3xm5qvr7vf4wy4z8x"; }) 21 - (fetchNuGet { name = "Microsoft.NETCore.App.Host.osx-x64"; version = "5.0.5"; sha256 = "14d6wz593dwm2j3apd3ny10idk8bfxqgfrparhc1q7q4i66y21ws"; }) 22 - (fetchNuGet { name = "Microsoft.NETCore.App.Host.win-x64"; version = "5.0.5"; sha256 = "1233y31z46yqzjgwpa6mmb1h63iqp6wbly6mbwkjqm2adx1wkp47"; }) 23 - (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "5.0.5"; sha256 = "1h5yry6k9bpqqis2fb1901csb8kipm7anm174fjj41r317vzfjfa"; }) 24 - (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "5.0.5"; sha256 = "1a1ijdk61l0h25sj9ypcf96vz1c08ca7q5809g82qpi9m34kw8b8"; }) 25 - (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.win-x64"; version = "5.0.5"; sha256 = "1gc4msk61jgj9ill4icp0mn523g411iqpxphp0fykfvqdpqyqg46"; }) 21 + (fetchNuGet { name = "Microsoft.NETCore.App.Host.osx-x64"; version = "5.0.10"; sha256 = "1z8l02ypzbhbh0jp89ibc4dx61dvaa4l7cdn4s2zs0l492nz2ni8"; }) 22 + (fetchNuGet { name = "Microsoft.NETCore.App.Host.win-x64"; version = "5.0.10"; sha256 = "07yr09al8cci38zmwqghpsf8jsg51a8qv6p156ph8b5714iq5jjq"; }) 23 + (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "5.0.10"; sha256 = "1b3lm6dc31yl9r0rian7zcmhpn949dyp4yhw4fsl4bkdpp4id085"; }) 24 + (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "5.0.10"; sha256 = "1pphlbhs1swr14g07hnvvwj9p983qqf6vqaq455bhpn6lin3z81f"; }) 25 + (fetchNuGet { name = "Microsoft.NETCore.App.Runtime.win-x64"; version = "5.0.10"; sha256 = "0cn3nq7vmjwk8b5bh7hb5wzidz1msjmwyng6k1ngqdm49w9f0m2g"; }) 26 26 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 27 27 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 28 28 (fetchNuGet { name = "Microsoft.NETCore.Platforms"; version = "2.0.0"; sha256 = "1fk2fk2639i7nzy58m9dvpdnzql4vb8yl8vr19r2fp8lmj9w2jr0"; })
+4 -1
pkgs/misc/vim-plugins/build-vim-plugin.nix
··· 6 6 7 7 rec { 8 8 addRtp = path: attrs: derivation: 9 - derivation // { rtp = "${derivation}/${path}"; } // { 9 + derivation // { rtp = "${derivation}"; } // { 10 10 overrideAttrs = f: buildVimPlugin (attrs // f attrs); 11 11 }; 12 12 ··· 25 25 }: 26 26 addRtp "${rtpPath}/${path}" attrs (stdenv.mkDerivation (attrs // { 27 27 name = namePrefix + name; 28 + 29 + # dont move the doc folder since vim expects it 30 + forceShare= [ "man" "info" ]; 28 31 29 32 nativeBuildInputs = attrs.nativeBuildInputs or [] ++ [ vimGenDocHook ]; 30 33 inherit unpackPhase configurePhase buildPhase addonInfo preInstall postInstall;
+9
pkgs/misc/vim-plugins/overrides.nix
··· 37 37 , xkb-switch 38 38 , ycmd 39 39 40 + # test dependencies 41 + , neovim-unwrapped 42 + 40 43 # command-t dependencies 41 44 , rake 42 45 , ruby ··· 392 395 substituteInPlace $out/bin/minimap_generator.sh \ 393 396 --replace "code-minimap" "${code-minimap}/bin/code-minimap" 394 397 ''; 398 + 399 + doCheck = true; 400 + checkPhase = '' 401 + ${neovim-unwrapped}/bin/nvim -n -u NONE -i NONE -V1 --cmd "set rtp+=$out" --cmd "runtime! plugin/*.vim" -c "MinimapToggle" +quit! 402 + ''; 403 + 395 404 }); 396 405 397 406 ncm2 = super.ncm2.overrideAttrs (old: {
+2 -2
pkgs/misc/vim-plugins/vim-gen-doc-hook.sh
··· 5 5 vimPluginGenTags() { 6 6 echo "Executing vimPluginGenTags" 7 7 8 - target="$out/@rtpPath@/$pname" 8 + target="$out/@rtpPath@" 9 9 mkdir -p $out/@rtpPath@ 10 10 11 11 # build help tags ··· 16 16 exit 1 17 17 fi 18 18 else 19 - echo "No docs available" 19 + echo "No docs available for $target" 20 20 fi 21 21 22 22 if [ -n "$addonInfo" ]; then
+11 -11
pkgs/misc/vim-plugins/vim-utils.nix
··· 187 187 188 188 rtpPath = "."; 189 189 190 - nativeImpl = packages: 191 - (let 190 + # Generates a packpath folder as expected by vim 191 + packDir = packages: 192 + let 192 193 # dir is "start" or "opt" 193 194 linkLuaPlugin = plugin: packageName: dir: '' 194 195 mkdir -p $out/pack/${packageName}/${dir}/${plugin.pname}/lua ··· 205 206 then linkLuaPlugin pluginPath 206 207 else linkVimlPlugin pluginPath; 207 208 208 - packageLinks = (packageName: {start ? [], opt ? []}: 209 + packageLinks = packageName: {start ? [], opt ? []}: 209 210 let 210 211 # `nativeImpl` expects packages to be derivations, not strings (as 211 212 # opposed to older implementations that have to maintain backwards ··· 230 231 ++ [ 231 232 "mkdir -p $out/pack/${packageName}/start/__python3_dependencies" 232 233 "ln -s ${python3Env}/${python3Env.sitePackages} $out/pack/${packageName}/start/__python3_dependencies/python3" 233 - ] 234 - ); 235 - packDir = (packages: 234 + ]; 235 + in 236 236 stdenv.mkDerivation { 237 237 name = "vim-pack-dir"; 238 238 src = ./.; 239 239 installPhase = lib.concatStringsSep "\n" (lib.flatten (lib.mapAttrsToList packageLinks packages)); 240 240 preferLocalBuild = true; 241 - } 242 - ); 243 - in 241 + }; 242 + 243 + nativeImpl = packages: 244 244 '' 245 245 set packpath^=${packDir packages} 246 246 set runtimepath^=${packDir packages} 247 - ''); 247 + ''; 248 248 249 249 /* Generates a vimrc string 250 250 ··· 295 295 plugImpl = 296 296 ('' 297 297 source ${vimPlugins.vim-plug.rtp}/plug.vim 298 - call plug#begin('/dev/null') 298 + silent! call plug#begin('/dev/null') 299 299 300 300 '' + (lib.concatMapStringsSep "\n" (pkg: "Plug '${pkg.rtp}'") plug.plugins) + '' 301 301
+24
pkgs/misc/vscode-extensions/default.nix
··· 1106 1106 }; 1107 1107 }; 1108 1108 1109 + mvllow.rose-pine = buildVscodeMarketplaceExtension { 1110 + mktplcRef = { 1111 + publisher = "mvllow"; 1112 + name = "rose-pine"; 1113 + version = "1.3.6"; 1114 + sha256 = "sha256-pKrwiA/ZArBfumT0VTauhINSDEbABWgBBzTZEE07wzk="; 1115 + }; 1116 + meta = { 1117 + license = lib.licenses.mit; 1118 + }; 1119 + }; 1120 + 1109 1121 naumovs.color-highlight = buildVscodeMarketplaceExtension { 1110 1122 mktplcRef = { 1111 1123 name = "color-highlight"; ··· 1375 1387 homepage = "https://github.com/svsool/vscode-memo"; 1376 1388 license = licenses.mit; 1377 1389 maintainers = with maintainers; [ ratsclub ]; 1390 + }; 1391 + }; 1392 + 1393 + tabnine.tabnine-vscode = buildVscodeMarketplaceExtension { 1394 + mktplcRef = { 1395 + name = "tabnine-vscode"; 1396 + publisher = "tabnine"; 1397 + version = "3.4.27"; 1398 + sha256 = "sha256-Xg/N59a38OKEWb/4anysslensUoj9ENcuobkyByFDxE="; 1399 + }; 1400 + meta = { 1401 + license = lib.licenses.mit; 1378 1402 }; 1379 1403 }; 1380 1404
+12 -12
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 13 13 }, 14 14 "5.10": { 15 15 "extra": "-hardened1", 16 - "name": "linux-hardened-5.10.65-hardened1.patch", 17 - "sha256": "0zc9amnjfn4dqdn0vagxqpymgmnpqb0h04i0zyc2zr5q33kgqwy9", 18 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.65-hardened1/linux-hardened-5.10.65-hardened1.patch" 16 + "name": "linux-hardened-5.10.66-hardened1.patch", 17 + "sha256": "0pj5ja28byaxgfvlwsljfha5a3ihg9s0cy4lpzxmagvz00nhbpvf", 18 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.66-hardened1/linux-hardened-5.10.66-hardened1.patch" 19 19 }, 20 20 "5.13": { 21 21 "extra": "-hardened1", 22 - "name": "linux-hardened-5.13.17-hardened1.patch", 23 - "sha256": "18pqc53ny2bpipgcdar8kwnzcm8al1bfa249ydkrmqn7a94nh2p2", 24 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.13.17-hardened1/linux-hardened-5.13.17-hardened1.patch" 22 + "name": "linux-hardened-5.13.18-hardened1.patch", 23 + "sha256": "1cdr6l5c4j6666lvkxv30bfkhnf9sf5j7kqwc37pjk9kqmwnfbz1", 24 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.13.18-hardened1/linux-hardened-5.13.18-hardened1.patch" 25 25 }, 26 26 "5.14": { 27 27 "extra": "-hardened1", 28 - "name": "linux-hardened-5.14.4-hardened1.patch", 29 - "sha256": "05izlhlbh867cjxsag4hr9x18zhqnh9mkj3abx9rpqg6fm6qqis6", 30 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.14.4-hardened1/linux-hardened-5.14.4-hardened1.patch" 28 + "name": "linux-hardened-5.14.5-hardened1.patch", 29 + "sha256": "0qx7i9clxla2g59mcncg1wf07kvb5lpqkhdrc66xzpci65rq0qpd", 30 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.14.5-hardened1/linux-hardened-5.14.5-hardened1.patch" 31 31 }, 32 32 "5.4": { 33 33 "extra": "-hardened1", 34 - "name": "linux-hardened-5.4.146-hardened1.patch", 35 - "sha256": "1bckgkd1cn5qjdq3finz3jfdn9gb18ypvibg3il4aj0a7jay5zra", 36 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.146-hardened1/linux-hardened-5.4.146-hardened1.patch" 34 + "name": "linux-hardened-5.4.147-hardened1.patch", 35 + "sha256": "1jkvfpckmj9ig4nsxxiigawkay05lk8r9fps16iaq6lz2mf9vqsb", 36 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.147-hardened1/linux-hardened-5.4.147-hardened1.patch" 37 37 } 38 38 }
+11 -11
pkgs/servers/x11/xorg/overrides.nix
··· 375 375 xf86inputevdev = super.xf86inputevdev.overrideAttrs (attrs: { 376 376 outputs = [ "out" "dev" ]; # to get rid of xorgserver.dev; man is tiny 377 377 preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c"; 378 - installFlags = [ 379 - "sdkdir=${placeholder "out"}/include/xorg" 378 + configureFlags = [ 379 + "--with-sdkdir=${placeholder "dev"}/include/xorg" 380 380 ]; 381 381 }); 382 382 383 383 xf86inputmouse = super.xf86inputmouse.overrideAttrs (attrs: { 384 - installFlags = [ 385 - "sdkdir=${placeholder "out"}/include/xorg" 384 + configureFlags = [ 385 + "--with-sdkdir=${placeholder "out"}/include/xorg" 386 386 ]; 387 387 }); 388 388 389 389 xf86inputjoystick = super.xf86inputjoystick.overrideAttrs (attrs: { 390 - installFlags = [ 391 - "sdkdir=${placeholder "out"}/include/xorg" 390 + configureFlags = [ 391 + "--with-sdkdir=${placeholder "out"}/include/xorg" 392 392 ]; 393 393 }); 394 394 395 395 xf86inputlibinput = super.xf86inputlibinput.overrideAttrs (attrs: { 396 396 outputs = [ "out" "dev" ]; 397 - installFlags = [ 398 - "sdkdir=${placeholder "dev"}/include/xorg" 397 + configureFlags = [ 398 + "--with-sdkdir=${placeholder "dev"}/include/xorg" 399 399 ]; 400 400 }); 401 401 402 402 xf86inputsynaptics = super.xf86inputsynaptics.overrideAttrs (attrs: { 403 403 outputs = [ "out" "dev" ]; # *.pc pulls xorgserver.dev 404 - installFlags = [ 405 - "sdkdir=${placeholder "out"}/include/xorg" 406 - "configdir=${placeholder "out"}/share/X11/xorg.conf.d" 404 + configureFlags = [ 405 + "--with-sdkdir=${placeholder "dev"}/include/xorg" 406 + "--with-xorg-conf-dir=${placeholder "out"}/share/X11/xorg.conf.d" 407 407 ]; 408 408 }); 409 409
+2 -2
pkgs/tools/admin/exoscale-cli/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "exoscale-cli"; 5 - version = "1.41.0"; 5 + version = "1.42.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "exoscale"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-0utKBCe65lCaamoF4uqvku1zTX2QPpV/6xBtpGteVYw="; 11 + sha256 = "sha256-t6/w998mTsFl/V/zcbVxokJk4VZWDoOXsjr93GW7Zh4="; 12 12 }; 13 13 14 14 goPackagePath = "github.com/exoscale/cli";
+25
pkgs/tools/admin/fits-cloudctl/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "fits-cloudctl"; 8 + version = "0.9.11"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "fi-ts"; 12 + repo = "cloudctl"; 13 + rev = "v${version}"; 14 + sha256 = "1i9h96b0b69ib72b2ayp8mhgvkm21jbh8mf7wb1fp2gdzbxcgrhg"; 15 + }; 16 + 17 + vendorSha256 = "1fs1jqxz36i25vyb0mznkjglz8wwq9a8884052cjpacvsgd3glkf"; 18 + 19 + meta = with lib; { 20 + description = "Command-line client for FI-TS Finance Cloud Native services"; 21 + homepage = "https://github.com/fi-ts/cloudctl"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ j0xaf ]; 24 + }; 25 + }
+1 -1
pkgs/tools/backup/discordchatexporter-cli/deps.nix
··· 3 3 (fetchNuGet { name = "Gress"; version = "1.2.0"; sha256 = "0aidc9whi0718gh896j7xkyndki9x7rifd8n1n681afb2zbxw4bn"; }) 4 4 (fetchNuGet { name = "JsonExtensions"; version = "1.1.0"; sha256 = "1fqxb2jdbvjgg135wmy890qf63r056dq16jy7wgzkgp21m3j0lgy"; }) 5 5 (fetchNuGet { name = "Microsoft.AspNetCore.App.Ref"; version = "3.1.10"; sha256 = "0xn4zh7shvijqlr03fqsmps6gz856isd9bg9rk4z2c4599ggal77"; }) 6 - (fetchNuGet { name = "Microsoft.NETCore.App.Host.linux-x64"; version = "3.1.14"; sha256 = "11rqnascx9asfyxgxzwgxgr9gxxndm552k4dn4p1s57ciz7vkg9h"; }) 6 + (fetchNuGet { name = "Microsoft.NETCore.App.Host.linux-x64"; version = "3.1.19"; sha256 = "10fs93kg8vhhm1l05815m8yqz796i6gk824pk1bps239mshmkybr"; }) 7 7 (fetchNuGet { name = "Microsoft.NETCore.App.Ref"; version = "3.1.0"; sha256 = "08svsiilx9spvjamcnjswv0dlpdrgryhr3asdz7cvnl914gjzq4y"; }) 8 8 (fetchNuGet { name = "MiniRazor.CodeGen"; version = "2.1.4"; sha256 = "1856hfw2wl3ilxmpg4jmwpigmq0rm50i9pmy3sq8f1xc8j44kzl2"; }) 9 9 (fetchNuGet { name = "MiniRazor.Runtime"; version = "2.1.4"; sha256 = "1pc3kjbnz810a8bb94k6355rflmayigfmpfmc4jzzx6l6iavnnc4"; })
+23
pkgs/tools/games/steam-acf/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "steam-acf"; 5 + version = "0.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "chisui"; 9 + repo = "acf"; 10 + rev = "v${version}"; 11 + sha256 = "16q3md7cvdz37pqm1sda81rkjf249xbsrlpdl639r06p7f4nqlc2"; 12 + }; 13 + 14 + cargoSha256 = "0fzlvn0sl7613hpsb7ncykmcl53dgl8rzsg317nwkj2w679q4xq6"; 15 + 16 + meta = with lib; { 17 + description = "Tool to convert Steam .acf files to JSON"; 18 + homepage = "https://github.com/chisui/acf"; 19 + license = with licenses; [ mit /* or */ asl20 ]; 20 + maintainers = with maintainers; [ chisui ]; 21 + mainProgram = "acf"; 22 + }; 23 + }
+22 -6
pkgs/tools/misc/uudeview/default.nix
··· 1 - { lib, stdenv, fetchurl, tcl, tk }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + , tcl 6 + , tk 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 10 pname = "uudeview"; 5 11 version = "0.5.20"; 12 + 6 13 src = fetchurl { 7 - url = "http://www.fpx.de/fp/Software/UUDeview/download/uudeview-${version}.tar.gz"; 14 + url = "http://www.fpx.de/fp/Software/UUDeview/download/${pname}-${version}.tar.gz"; 8 15 sha256 = "0dg4v888fxhmf51vxq1z1gd57fslsidn15jf42pj4817vw6m36p4"; 9 16 }; 10 17 11 18 buildInputs = [ tcl tk ]; 12 - hardeningDisable = [ "format" ]; 19 + 13 20 configureFlags = [ "--enable-tk=${tk.dev}" "--enable-tcl=${tcl}" ]; 14 21 15 - # https://wiki.tcl.tk/3577 16 - patches = [ ./matherr.patch ]; 22 + patches = [ 23 + # https://wiki.tcl.tk/3577 24 + ./matherr.patch 25 + # format hardening 26 + (fetchpatch { 27 + url = "https://raw.githubusercontent.com/OpenMandrivaAssociation/uudeview/master/uudeview-0.5.20-fix-str-fmt.patch"; 28 + sha256 = "1biipck60mhpd0j6jwizaisvqa8alisw1dpfqm6zf7ic5b93hmfw"; 29 + extraPrefix = ""; 30 + }) 31 + ]; 32 + 17 33 postPatch = '' 18 34 substituteInPlace tcl/xdeview --replace "exec uuwish" "exec $out/bin/uuwish" 19 35 ''; ··· 21 37 meta = { 22 38 description = "The Nice and Friendly Decoder"; 23 39 homepage = "http://www.fpx.de/fp/Software/UUDeview/"; 24 - license = lib.licenses.gpl2; 40 + license = lib.licenses.gpl2Plus; 25 41 maintainers = with lib.maintainers; [ woffs ]; 26 42 platforms = lib.platforms.linux; 27 43 };
+8
pkgs/tools/networking/opensnitch/daemon.nix
··· 5 5 , libnetfilter_queue 6 6 , libnfnetlink 7 7 , lib 8 + , coreutils 9 + , iptables 8 10 }: 9 11 10 12 buildGoModule rec { ··· 32 34 33 35 postBuild = '' 34 36 mv $GOPATH/bin/daemon $GOPATH/bin/opensnitchd 37 + mkdir -p $out/lib/systemd/system 38 + substitute opensnitchd.service $out/lib/systemd/system/opensnitchd.service \ 39 + --replace "/usr/local/bin/opensnitchd" "$out/bin/opensnitchd" \ 40 + --replace "/etc/opensnitchd/rules" "/var/lib/opensnitch/rules" \ 41 + --replace "/bin/mkdir" "${coreutils}/bin/mkdir" 42 + sed -i '/\[Service\]/a Environment=PATH=${iptables}/bin' $out/lib/systemd/system/opensnitchd.service 35 43 ''; 36 44 37 45 vendorSha256 = "sha256-LMwQBFkHg1sWIUITLOX2FZi5QUfOivvrkcl9ELO3Trk=";
+2 -2
pkgs/tools/networking/wireguard-tools/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "wireguard-tools"; 15 - version = "1.0.20210424"; 15 + version = "1.0.20210914"; 16 16 17 17 src = fetchzip { 18 18 url = "https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-${version}.tar.xz"; 19 - sha256 = "sha256-0aGaE4EBb4wb5g32Wugakt7w41sb97Hqqkac7qE641M="; 19 + sha256 = "sha256-eGGkTVdPPTWK6iEyowW11F4ywRhd+0IXJTZCqY3OZws="; 20 20 }; 21 21 22 22 outputs = [ "out" "man" ];
+3 -3
pkgs/tools/package-management/cargo-audit/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-audit"; 13 - version = "0.15.1"; 13 + version = "0.15.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "RustSec"; 17 17 repo = "rustsec"; 18 18 rev = "cargo-audit%2Fv${version}"; 19 - sha256 = "1rmhizgld35996kzp3fal2zl20aqpnmkzx0clc80n30p814isdrw"; 19 + sha256 = "1j5ijrjhzqimamhj51qhpbaxx485hcxhaj64lknkn0xrda3apkx8"; 20 20 }; 21 21 22 - cargoSha256 = "10li9w3m4xxb8943802y74dgb1wsgjkn74hwn2x47c0w0yjiig7p"; 22 + cargoSha256 = "1qvrzaila3wbjmc7ri5asa3di2nzln78ys9innzd84fr36c90kkc"; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+26
pkgs/tools/security/yubikey-touch-detector/default.nix
··· 1 + { lib, libnotify, buildGoModule, fetchFromGitHub, pkg-config }: 2 + 3 + buildGoModule rec { 4 + pname = "yubikey-touch-detector"; 5 + version = "1.9.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "maximbaz"; 9 + repo = "yubikey-touch-detector"; 10 + rev = version; 11 + sha256 = "sha256-I9dRCQhbXd8K1zp291z9XVwHI9DcxgvrzYaHICZH5v0="; 12 + }; 13 + vendorSha256 = "sha256-UeDLGwYrXwLOtQt/8fEmficc/1j0x+zr/JLa6lLF5cs="; 14 + 15 + nativeBuildInputs = [ pkg-config ]; 16 + 17 + buildInputs = [ libnotify ]; 18 + 19 + meta = with lib; { 20 + description = "A tool to detect when your YubiKey is waiting for a touch (to send notification or display a visual indicator on the screen)."; 21 + homepage = "https://github.com/maximbaz/yubikey-touch-detector"; 22 + maintainers = with maintainers; [ sumnerevans ]; 23 + license = licenses.isc; 24 + platforms = platforms.unix; 25 + }; 26 + }
+6
pkgs/top-level/all-packages.nix
··· 2771 2771 2772 2772 firestarter = callPackage ../applications/misc/firestarter { }; 2773 2773 2774 + fits-cloudctl = callPackage ../tools/admin/fits-cloudctl { }; 2775 + 2774 2776 frangipanni = callPackage ../tools/text/frangipanni { }; 2775 2777 2776 2778 fselect = callPackage ../tools/misc/fselect { }; ··· 19521 19523 19522 19524 yubikey-agent = callPackage ../tools/security/yubikey-agent { }; 19523 19525 19526 + yubikey-touch-detector = callPackage ../tools/security/yubikey-touch-detector { }; 19527 + 19524 19528 zchunk = callPackage ../development/libraries/zchunk { }; 19525 19529 19526 19530 zeitgeist = callPackage ../development/libraries/zeitgeist { }; ··· 29682 29686 steam-tui = callPackage ../games/steam-tui { }; 29683 29687 29684 29688 steamcmd = steamPackages.steamcmd; 29689 + 29690 + steam-acf = callPackage ../tools/games/steam-acf { }; 29685 29691 29686 29692 protontricks = python3Packages.callPackage ../tools/package-management/protontricks { 29687 29693 winetricks = winetricks.override {
+24 -31
pkgs/top-level/linux-kernels.nix
··· 1 1 { pkgs 2 + , linuxKernel 2 3 , config 3 4 , buildPackages 4 5 , callPackage ··· 16 17 # - Update the rev in ../os-specific/linux/kernel/linux-libre.nix to the latest one. 17 18 # - Update linux_latest_hardened when the patches become available 18 19 19 - let 20 - kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; 20 + with linuxKernel; 21 21 22 + let 22 23 deblobKernel = kernel: callPackage ../os-specific/linux/kernel/linux-libre.nix { 23 24 linux = kernel; 24 25 }; 25 26 26 - kernels = lib.makeExtensible (self: with self; 27 + # Hardened Linux 28 + hardenedKernelFor = kernel': overrides: 29 + let kernel = kernel'.override overrides; 30 + in kernel.override { 31 + structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix { 32 + inherit lib; 33 + inherit (kernel) version; 34 + }; 35 + kernelPatches = kernel.kernelPatches ++ [ 36 + kernelPatches.hardened.${kernel.meta.branch} 37 + ]; 38 + modDirVersionArg = kernel.modDirVersion + (kernelPatches.hardened.${kernel.meta.branch}).extra; 39 + isHardened = true; 40 + }; 41 + in { 42 + kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; 43 + 44 + kernels = recurseIntoAttrs (lib.makeExtensible (self: with self; 27 45 let callPackage = newScope self; in { 28 46 29 47 linux_mptcp_95 = callPackage ../os-specific/linux/kernel/linux-mptcp-95.nix { ··· 204 222 linux_5_10_hardened = hardenedKernelFor kernels.linux_5_10 { }; 205 223 linux_5_13_hardened = hardenedKernelFor kernels.linux_5_13 { }; 206 224 207 - }); 225 + })); 208 226 /* Linux kernel modules are inherently tied to a specific kernel. So 209 227 rather than provide specific instances of those packages for a 210 228 specific kernel, we have a function that builds those packages ··· 429 447 ati_drivers_x11 = throw "ati drivers are no longer supported by any kernel >=4.1"; # added 2021-05-18; 430 448 }); 431 449 432 - # Hardened Linux 433 - hardenedKernelFor = kernel': overrides: 434 - let kernel = kernel'.override overrides; 435 - in kernel.override { 436 - structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix { 437 - inherit lib; 438 - inherit (kernel) version; 439 - }; 440 - kernelPatches = kernel.kernelPatches ++ [ 441 - kernelPatches.hardened.${kernel.meta.branch} 442 - ]; 443 - modDirVersionArg = kernel.modDirVersion + (kernelPatches.hardened.${kernel.meta.branch}).extra; 444 - isHardened = true; 445 - }; 446 450 hardenedPackagesFor = kernel: overrides: packagesFor (hardenedKernelFor kernel overrides); 447 451 448 452 vanillaPackages = { ··· 471 475 linux_rpi4 = packagesFor kernels.linux_rpi4; 472 476 }; 473 477 474 - packages = vanillaPackages // rtPackages // rpiPackages // { 478 + packages = recurseIntoAttrs (vanillaPackages // rtPackages // rpiPackages // { 475 479 linux_mptcp_95 = packagesFor kernels.linux_mptcp_95; 476 480 477 481 # Intentionally lacks recurseIntoAttrs, as -rc kernels will quite likely break out-of-tree modules and cause failed Hydra builds. ··· 495 499 linux_libre = recurseIntoAttrs (packagesFor kernels.linux_libre); 496 500 497 501 linux_latest_libre = recurseIntoAttrs (packagesFor kernels.linux_latest_libre); 498 - }; 502 + }); 499 503 500 504 packageAliases = { 501 505 linux_default = packages.linux_5_10; ··· 509 513 510 514 manualConfig = makeOverridable (callPackage ../os-specific/linux/kernel/manual-config.nix {}); 511 515 512 - in 513 - 514 - { 515 - packages = recurseIntoAttrs packages; 516 - kernels = recurseIntoAttrs kernels; 517 - inherit packageAliases; 518 - inherit vanillaPackages rtPackages rpiPackages; 519 - inherit kernelPatches packagesFor hardenedPackagesFor; 520 - 521 516 customPackage = { version, src, configfile, allowImportFromDerivation ? true }: 522 517 recurseIntoAttrs (packagesFor (manualConfig { 523 518 inherit version src configfile lib stdenv allowImportFromDerivation; 524 519 })); 525 - 526 - inherit manualConfig; 527 520 528 521 # Derive one of the default .config files 529 522 linuxConfig = {