tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
msbuild: 16.3 -> 16.8
David McFarland
4 years ago
3898c9a3
d386cb40
+1631
-1355
4 changed files
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
msbuild
create-deps.sh
default.nix
deps.nix
nuget.nix
+41
-16
pkgs/development/tools/build-managers/msbuild/create-deps.sh
···
1
1
#!/usr/bin/env nix-shell
2
2
-
#!nix-shell -i bash -p msbuild
2
2
+
#!nix-shell -i bash -p jq -p xmlstarlet -p curl
3
3
set -euo pipefail
4
4
5
5
cat << EOL
6
6
{ fetchurl }: [
7
7
EOL
8
8
9
9
-
tmpdir="$(mktemp -d -p "$(pwd)")" # must be under source root
10
10
-
trap 'rm -rf $tmpdir' EXIT
9
9
+
mapfile -t repos < <(
10
10
+
xmlstarlet sel -t -v 'configuration/packageSources/add/@value' -n NuGet.config |
11
11
+
while IFS= read index
12
12
+
do
13
13
+
curl --compressed -fsL "$index" | \
14
14
+
jq -r '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"'
15
15
+
done
16
16
+
)
17
17
+
18
18
+
find .packages fake-home/.nuget/packages -name \*.nupkg -printf '%P\n' | sort -u |
19
19
+
while IFS= read file
20
20
+
do
21
21
+
packagedir=$(dirname $file)
22
22
+
version=$(basename $packagedir)
23
23
+
package=$(dirname $packagedir)
24
24
+
25
25
+
found=false
26
26
+
for repo in "${repos[@]}"
27
27
+
do
28
28
+
url="$repo$package/$version/$package.$version.nupkg"
29
29
+
if curl -fsL "$url" -o /dev/null
30
30
+
then
31
31
+
found=true
32
32
+
break
33
33
+
fi
34
34
+
done
35
35
+
36
36
+
if ! $found
37
37
+
then
38
38
+
echo "couldn't find $package $version" >&2
39
39
+
exit 1
40
40
+
fi
11
41
12
12
-
(
13
13
-
ulimit -n 8192 # https://github.com/NuGet/Home/issues/8571
14
14
-
export HOME="$tmpdir"
15
15
-
msbuild -noAutoRsp -t:restore -p:RestoreNoCache=true MSBuild.sln
16
16
-
msbuild -noAutoRsp -t:restore -p:RestoreNoCache=true "$tmpdir"/.nuget/packages/microsoft.dotnet.arcade.sdk/*/tools/Tools.proj
17
17
-
) | \
18
18
-
sed -nr 's/^ *OK *(.*\.nupkg).*$/\1/p' | \
19
19
-
sort -u | \
20
20
-
while read url; do
21
42
sha256=$(nix-prefetch-url "$url" 2>/dev/null)
22
43
cat << EOL
23
23
-
(fetchurl {
24
24
-
url = "$url";
25
25
-
sha256 = "$sha256";
26
26
-
})
44
44
+
{
45
45
+
name = "$package";
46
46
+
version = "$version";
47
47
+
src = fetchurl {
48
48
+
url = "$url";
49
49
+
sha256 = "$sha256";
50
50
+
};
51
51
+
}
27
52
EOL
28
53
done
29
54
+28
-13
pkgs/development/tools/build-managers/msbuild/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnet-sdk }:
1
1
+
{ lib, stdenv, fetchurl, fetchpatch, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnet-sdk, writeText }:
2
2
3
3
let
4
4
5
5
xplat = fetchurl {
6
6
-
url = "https://github.com/mono/msbuild/releases/download/0.07/mono_msbuild_xplat-master-8f608e49.zip";
7
7
-
sha256 = "1jxq3fk9a6q2a8i9zacxaz3fkvc22i9qvzlpa7wbb95h42g0ffhq";
6
6
+
url = "https://github.com/mono/msbuild/releases/download/0.08/mono_msbuild_6.4.0.208.zip";
7
7
+
sha256 = "05k7qmnhfvrdgyjn6vp81jb97y21m261jnwdyqpjqpcmzz18j93g";
8
8
};
9
9
10
10
-
deps = import ./nuget.nix { inherit fetchurl; };
10
10
+
deps = map (package: package.src)
11
11
+
(import ./deps.nix { inherit fetchurl; });
12
12
+
13
13
+
nuget-config = writeText "NuGet.config" ''
14
14
+
<?xml version="1.0" encoding="utf-8"?>
15
15
+
<configuration>
16
16
+
<packageSources>
17
17
+
<clear />
18
18
+
</packageSources>
19
19
+
</configuration>
20
20
+
'';
11
21
12
22
in
13
23
14
24
stdenv.mkDerivation rec {
15
25
pname = "msbuild";
16
16
-
version = "16.3+xamarinxplat.2019.07.26.14.57";
26
26
+
version = "16.8+xamarinxplat.2020.07.30.15.02";
17
27
18
28
src = fetchurl {
19
29
url = "https://download.mono-project.com/sources/msbuild/msbuild-${version}.tar.xz";
20
20
-
sha256 = "1zcdfx4xsh62wj3g1jc2an0lppsfs691lz4dv05xbgi01aq1hk6a";
30
30
+
sha256 = "10amyca78b6pjfsy54b1rgwz2c1bx0sfky9zhldvzy4divckp25g";
21
31
};
22
32
23
33
nativeBuildInputs = [
···
37
47
LOCALE_ARCHIVE = lib.optionalString stdenv.isLinux
38
48
"${glibcLocales}/lib/locale/locale-archive";
39
49
50
50
+
patches = [
51
51
+
(fetchpatch {
52
52
+
url = "https://github.com/mono/msbuild/commit/cad85cefabdaa001fb4bdbea2f5bf1d1cdb83c9b.patch";
53
53
+
sha256 = "1s8agc7nxxs69b3fl1v1air0c4dpig3hy4sk11l1560jrlx06dhh";
54
54
+
})
55
55
+
];
56
56
+
40
57
buildPhase = ''
41
58
# nuget would otherwise try to base itself in /homeless-shelter
42
59
export HOME=$(pwd)/fake-home
43
60
61
61
+
cp ${nuget-config} NuGet.config
62
62
+
nuget sources Add -Name nixos -Source $(pwd)/nixos
63
63
+
44
64
for package in ${toString deps}; do
45
65
nuget add $package -Source nixos
46
66
done
47
47
-
48
48
-
nuget sources Disable -Name "nuget.org"
49
49
-
nuget sources Add -Name nixos -Source $(pwd)/nixos
50
67
51
68
# license check is case sensitive
52
69
mv LICENSE license.bak && mv license.bak license
···
61
78
# overwrite the file
62
79
echo "#!${stdenv.shell}" > eng/common/dotnet-install.sh
63
80
64
64
-
# msbuild response files to use only the nixos source
65
65
-
echo "/p:RestoreSources=nixos" > artifacts/mono-msbuild/MSBuild.rsp
66
66
-
67
81
# not patchShebangs, there is /bin/bash in the body of the script as well
68
82
substituteInPlace ./eng/cibuild_bootstrapped_msbuild.sh --replace /bin/bash ${stdenv.shell}
69
83
70
84
# DisableNerdbankVersioning https://gitter.im/Microsoft/msbuild/archives/2018/06/27?at=5b33dbc4ce3b0f268d489bfa
71
85
# TODO there are some (many?) failing tests
72
86
./eng/cibuild_bootstrapped_msbuild.sh --host_type mono --configuration Release --skip_tests /p:DisableNerdbankVersioning=true
87
87
+
patchShebangs stage1/mono-msbuild/msbuild
73
88
'';
74
89
75
90
installPhase = ''
76
76
-
mono artifacts/mono-msbuild/MSBuild.dll mono/build/install.proj /p:MonoInstallPrefix="$out" /p:Configuration=Release-MONO
91
91
+
stage1/mono-msbuild/msbuild mono/build/install.proj /p:MonoInstallPrefix="$out" /p:Configuration=Release-MONO
77
92
78
93
ln -s ${mono}/lib/mono/msbuild/Current/bin/Roslyn $out/lib/mono/msbuild/Current/bin/Roslyn
79
94
+1562
pkgs/development/tools/build-managers/msbuild/deps.nix
···
1
1
+
{ fetchurl }: [
2
2
+
{
3
3
+
name = "fsharp.net.sdk";
4
4
+
version = "1.0.4-bundled-0100";
5
5
+
src = fetchurl {
6
6
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/fsharp.net.sdk/1.0.4-bundled-0100/fsharp.net.sdk.1.0.4-bundled-0100.nupkg";
7
7
+
sha256 = "0zy4n2an2jh3xrdy1m5fjvynpd0b66i0hkpqdhy2q6d7dj0ks351";
8
8
+
};
9
9
+
}
10
10
+
{
11
11
+
name = "illink.tasks";
12
12
+
version = "0.1.6-prerelease.19380.1";
13
13
+
src = fetchurl {
14
14
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/illink.tasks/0.1.6-prerelease.19380.1/illink.tasks.0.1.6-prerelease.19380.1.nupkg";
15
15
+
sha256 = "1ihgzhizgiijg2kj38fn6hsinvxi7bvl0dpk7mbgc08rpgfdsvja";
16
16
+
};
17
17
+
}
18
18
+
{
19
19
+
name = "largeaddressaware";
20
20
+
version = "1.0.3";
21
21
+
src = fetchurl {
22
22
+
url = "https://api.nuget.org/v3-flatcontainer/largeaddressaware/1.0.3/largeaddressaware.1.0.3.nupkg";
23
23
+
sha256 = "1ppss9bgj0hf5s8307bnm2a4qm10mrymp0v12m28a5q81zjz0fr5";
24
24
+
};
25
25
+
}
26
26
+
{
27
27
+
name = "microbuild.core";
28
28
+
version = "0.2.0";
29
29
+
src = fetchurl {
30
30
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core/0.2.0/microbuild.core.0.2.0.nupkg";
31
31
+
sha256 = "1ya040l8fhi0hhira8kwdmv7cc88ar7kiixkpxirgcn9gmpn7ggv";
32
32
+
};
33
33
+
}
34
34
+
{
35
35
+
name = "microbuild.core.sentinel";
36
36
+
version = "1.0.0";
37
37
+
src = fetchurl {
38
38
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core.sentinel/1.0.0/microbuild.core.sentinel.1.0.0.nupkg";
39
39
+
sha256 = "035kqx5fkapql108n222lz8psvxk04mv3dy1qg3h08i4b8j3dy8i";
40
40
+
};
41
41
+
}
42
42
+
{
43
43
+
name = "microsoft.bcl.asyncinterfaces";
44
44
+
version = "1.1.0";
45
45
+
src = fetchurl {
46
46
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/1.1.0/microsoft.bcl.asyncinterfaces.1.1.0.nupkg";
47
47
+
sha256 = "1dq5yw7cy6s42193yl4iqscfw5vzkjkgv0zyy32scr4jza6ni1a1";
48
48
+
};
49
49
+
}
50
50
+
{
51
51
+
name = "microsoft.build";
52
52
+
version = "14.3.0";
53
53
+
src = fetchurl {
54
54
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build/14.3.0/microsoft.build.14.3.0.nupkg";
55
55
+
sha256 = "16jzspb0qj9szjfhhmb836vgqdq4m1gk3y816qg2mdjmv52r91dh";
56
56
+
};
57
57
+
}
58
58
+
{
59
59
+
name = "microsoft.build.centralpackageversions";
60
60
+
version = "2.0.1";
61
61
+
src = fetchurl {
62
62
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.centralpackageversions/2.0.1/microsoft.build.centralpackageversions.2.0.1.nupkg";
63
63
+
sha256 = "17cjiaj2b98q8s89168g42jb8rhwm6062jcbv57rbkdiiwdsn55k";
64
64
+
};
65
65
+
}
66
66
+
{
67
67
+
name = "microsoft.build.framework";
68
68
+
version = "14.3.0";
69
69
+
src = fetchurl {
70
70
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.framework/14.3.0/microsoft.build.framework.14.3.0.nupkg";
71
71
+
sha256 = "19p1w27d3qi09fxag0byvjrv6x54nd5fkiszqzqr7676r90aswxh";
72
72
+
};
73
73
+
}
74
74
+
{
75
75
+
name = "microsoft.build.framework";
76
76
+
version = "15.5.180";
77
77
+
src = fetchurl {
78
78
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/15.5.180/microsoft.build.framework.15.5.180.nupkg";
79
79
+
sha256 = "064y3a711ikx9pm9d2wyms4i3k4f9hfvn3vymhwygg7yv7gcj92z";
80
80
+
};
81
81
+
}
82
82
+
{
83
83
+
name = "microsoft.build.nugetsdkresolver";
84
84
+
version = "5.7.0-rtm.6710";
85
85
+
src = fetchurl {
86
86
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/microsoft.build.nugetsdkresolver/5.7.0-rtm.6710/microsoft.build.nugetsdkresolver.5.7.0-rtm.6710.nupkg";
87
87
+
sha256 = "07zi6akd5iqq6q3cwc273vvfx70dn2lzx1ham4pzlq7dh7gq3vha";
88
88
+
};
89
89
+
}
90
90
+
{
91
91
+
name = "microsoft.build.tasks.git";
92
92
+
version = "1.1.0-beta-20206-02";
93
93
+
src = fetchurl {
94
94
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.tasks.git/1.1.0-beta-20206-02/microsoft.build.tasks.git.1.1.0-beta-20206-02.nupkg";
95
95
+
sha256 = "1gwlhvqlkvs5c7qjky726alf71xflbh3x970g3dypfczi0y6gccx";
96
96
+
};
97
97
+
}
98
98
+
{
99
99
+
name = "microsoft.build.utilities.core";
100
100
+
version = "14.3.0";
101
101
+
src = fetchurl {
102
102
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.utilities.core/14.3.0/microsoft.build.utilities.core.14.3.0.nupkg";
103
103
+
sha256 = "0xk5n4i40w53amrd7bxlhikdvmh8z2anrk99pvz2rf50v946g6li";
104
104
+
};
105
105
+
}
106
106
+
{
107
107
+
name = "microsoft.build.utilities.core";
108
108
+
version = "15.5.180";
109
109
+
src = fetchurl {
110
110
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/15.5.180/microsoft.build.utilities.core.15.5.180.nupkg";
111
111
+
sha256 = "0c4bjhaqgc98bchln8p5d2p1vyn8qrha2b8gpn2l7bnznbcrd630";
112
112
+
};
113
113
+
}
114
114
+
{
115
115
+
name = "microsoft.codeanalysis.build.tasks";
116
116
+
version = "3.0.0-beta3-19064-03";
117
117
+
src = fetchurl {
118
118
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.codeanalysis.build.tasks/3.0.0-beta3-19064-03/microsoft.codeanalysis.build.tasks.3.0.0-beta3-19064-03.nupkg";
119
119
+
sha256 = "1l01l0jyqgs8ix5v6b6n0q4yv1y1khr14dh7pw0qivkc5gsys19v";
120
120
+
};
121
121
+
}
122
122
+
{
123
123
+
name = "microsoft.codecoverage";
124
124
+
version = "16.1.1";
125
125
+
src = fetchurl {
126
126
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.codecoverage/16.1.1/microsoft.codecoverage.16.1.1.nupkg";
127
127
+
sha256 = "0xca3sys0a5ilz16ic7g4gds2b974nvmf89qwr1i6v8f7illhda5";
128
128
+
};
129
129
+
}
130
130
+
{
131
131
+
name = "microsoft.diasymreader.pdb2pdb";
132
132
+
version = "1.1.0-beta2-19521-03";
133
133
+
src = fetchurl {
134
134
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.diasymreader.pdb2pdb/1.1.0-beta2-19521-03/microsoft.diasymreader.pdb2pdb.1.1.0-beta2-19521-03.nupkg";
135
135
+
sha256 = "1r82h0qiah2xx9rg8lvfvfdzxz60zd6vfs8kvck0csha5psmn56w";
136
136
+
};
137
137
+
}
138
138
+
{
139
139
+
name = "microsoft.dotnet.arcade.sdk";
140
140
+
version = "1.0.0-beta.20365.6";
141
141
+
src = fetchurl {
142
142
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.arcade.sdk/1.0.0-beta.20365.6/microsoft.dotnet.arcade.sdk.1.0.0-beta.20365.6.nupkg";
143
143
+
sha256 = "1ypsxq3ljdfwvrqyg6b8ii8mbqnjcb2vdr17jc4h0mdmkj0rlcdl";
144
144
+
};
145
145
+
}
146
146
+
{
147
147
+
name = "microsoft.dotnet.msbuildsdkresolver";
148
148
+
version = "3.1.400-preview.20365.4";
149
149
+
src = fetchurl {
150
150
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.msbuildsdkresolver/3.1.400-preview.20365.4/microsoft.dotnet.msbuildsdkresolver.3.1.400-preview.20365.4.nupkg";
151
151
+
sha256 = "0ifhk0whgbq0yw075al8sb14ajcnvyp883srx1j62vil9gfz0fp9";
152
152
+
};
153
153
+
}
154
154
+
{
155
155
+
name = "microsoft.dotnet.signtool";
156
156
+
version = "1.0.0-beta.20365.6";
157
157
+
src = fetchurl {
158
158
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.signtool/1.0.0-beta.20365.6/microsoft.dotnet.signtool.1.0.0-beta.20365.6.nupkg";
159
159
+
sha256 = "0zaw9hc19ldms3jy6n27x4p9clzz3nvpddyacwhgqiahjw2wqasz";
160
160
+
};
161
161
+
}
162
162
+
{
163
163
+
name = "microsoft.net.build.extensions";
164
164
+
version = "3.1.400-preview.20365.20";
165
165
+
src = fetchurl {
166
166
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.build.extensions/3.1.400-preview.20365.20/microsoft.net.build.extensions.3.1.400-preview.20365.20.nupkg";
167
167
+
sha256 = "1vmcj7p7jsr1lbkbxqqjsixkaxdazr5nwhhp1q402dgky9cayhd5";
168
168
+
};
169
169
+
}
170
170
+
{
171
171
+
name = "microsoft.net.compilers.toolset";
172
172
+
version = "3.7.0-5.20367.1";
173
173
+
src = fetchurl {
174
174
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.compilers.toolset/3.7.0-5.20367.1/microsoft.net.compilers.toolset.3.7.0-5.20367.1.nupkg";
175
175
+
sha256 = "1z8hzzmxs8jchq1jmmmwhpf3hsvrj803y3zb8j3xg9xkbnryfzwk";
176
176
+
};
177
177
+
}
178
178
+
{
179
179
+
name = "microsoft.netcore.platforms";
180
180
+
version = "1.0.1";
181
181
+
src = fetchurl {
182
182
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg";
183
183
+
sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr";
184
184
+
};
185
185
+
}
186
186
+
{
187
187
+
name = "microsoft.netcore.platforms";
188
188
+
version = "1.1.0";
189
189
+
src = fetchurl {
190
190
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg";
191
191
+
sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm";
192
192
+
};
193
193
+
}
194
194
+
{
195
195
+
name = "microsoft.netcore.targets";
196
196
+
version = "1.0.1";
197
197
+
src = fetchurl {
198
198
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg";
199
199
+
sha256 = "1gn085ddzn8psqfhmwcjzq2zrmb5gca2liap79a43wyw4gs8ip78";
200
200
+
};
201
201
+
}
202
202
+
{
203
203
+
name = "microsoft.netcore.targets";
204
204
+
version = "1.1.0";
205
205
+
src = fetchurl {
206
206
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg";
207
207
+
sha256 = "0idlsfwd9sn4p9jr1dqi14b8n2ly0k4dnjpvh8jfhxgnzzl98z5k";
208
208
+
};
209
209
+
}
210
210
+
{
211
211
+
name = "microsoft.netframework.referenceassemblies";
212
212
+
version = "1.0.0";
213
213
+
src = fetchurl {
214
214
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netframework.referenceassemblies/1.0.0/microsoft.netframework.referenceassemblies.1.0.0.nupkg";
215
215
+
sha256 = "0na724xhvqm63vq9y18fl9jw9q2v99bdwr353378s5fsi11qzxp9";
216
216
+
};
217
217
+
}
218
218
+
{
219
219
+
name = "microsoft.netframework.referenceassemblies.net472";
220
220
+
version = "1.0.0";
221
221
+
src = fetchurl {
222
222
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netframework.referenceassemblies.net472/1.0.0/microsoft.netframework.referenceassemblies.net472.1.0.0.nupkg";
223
223
+
sha256 = "1bqinq2nxnpqxziypg1sqy3ly0nymxxjpn8fwkn3rl4vl6gdg3rc";
224
224
+
};
225
225
+
}
226
226
+
{
227
227
+
name = "microsoft.net.sdk";
228
228
+
version = "3.1.400-preview.20365.20";
229
229
+
src = fetchurl {
230
230
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk/3.1.400-preview.20365.20/microsoft.net.sdk.3.1.400-preview.20365.20.nupkg";
231
231
+
sha256 = "02ann6rsnc6wl84wsk2fz7dpxcp5sq0b6jm3vv23av4b1f86f82y";
232
232
+
};
233
233
+
}
234
234
+
{
235
235
+
name = "microsoft.net.sdk.publish";
236
236
+
version = "3.1.300-servicing.20216.7";
237
237
+
src = fetchurl {
238
238
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.publish/3.1.300-servicing.20216.7/microsoft.net.sdk.publish.3.1.300-servicing.20216.7.nupkg";
239
239
+
sha256 = "1xivqihp2zrkmd4f65fgh9hn9ix75sqklbnanqlfk9dq67wscp41";
240
240
+
};
241
241
+
}
242
242
+
{
243
243
+
name = "microsoft.net.sdk.razor";
244
244
+
version = "3.1.6";
245
245
+
src = fetchurl {
246
246
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.sdk.razor/3.1.6/microsoft.net.sdk.razor.3.1.6.nupkg";
247
247
+
sha256 = "1vw0zi0lq52frivq8mgfvm79rfx0v492q6fci1jls1zwwjk0v9ia";
248
248
+
};
249
249
+
}
250
250
+
{
251
251
+
name = "microsoft.net.sdk.web";
252
252
+
version = "3.1.300-servicing.20216.7";
253
253
+
src = fetchurl {
254
254
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.web/3.1.300-servicing.20216.7/microsoft.net.sdk.web.3.1.300-servicing.20216.7.nupkg";
255
255
+
sha256 = "001jd2iwww0vb5x5dii915z82syh1aj48n62bn8zi1d3chwacr51";
256
256
+
};
257
257
+
}
258
258
+
{
259
259
+
name = "microsoft.net.sdk.web.projectsystem";
260
260
+
version = "3.1.300-servicing.20216.7";
261
261
+
src = fetchurl {
262
262
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.web.projectsystem/3.1.300-servicing.20216.7/microsoft.net.sdk.web.projectsystem.3.1.300-servicing.20216.7.nupkg";
263
263
+
sha256 = "0601mix6l18h8afxxgdbbv695d0sjskady209z52sf4bvf4h4kal";
264
264
+
};
265
265
+
}
266
266
+
{
267
267
+
name = "microsoft.net.test.sdk";
268
268
+
version = "16.1.1";
269
269
+
src = fetchurl {
270
270
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/16.1.1/microsoft.net.test.sdk.16.1.1.nupkg";
271
271
+
sha256 = "13mcqv85yf4f1rx06sz5ff4pcmbr4rkgqkqzmwl8ywadbh523125";
272
272
+
};
273
273
+
}
274
274
+
{
275
275
+
name = "microsoft.sourcelink.azurerepos.git";
276
276
+
version = "1.1.0-beta-20206-02";
277
277
+
src = fetchurl {
278
278
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.azurerepos.git/1.1.0-beta-20206-02/microsoft.sourcelink.azurerepos.git.1.1.0-beta-20206-02.nupkg";
279
279
+
sha256 = "00hfjh8d3z5np51qgr1s3q4j7bl34mfiypf7nbxcmxa7cyj0rg65";
280
280
+
};
281
281
+
}
282
282
+
{
283
283
+
name = "microsoft.sourcelink.common";
284
284
+
version = "1.1.0-beta-20206-02";
285
285
+
src = fetchurl {
286
286
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.common/1.1.0-beta-20206-02/microsoft.sourcelink.common.1.1.0-beta-20206-02.nupkg";
287
287
+
sha256 = "1qv0k0apxv3j1pccki2rzakjfb0868hmg0968da0639f75s3glr9";
288
288
+
};
289
289
+
}
290
290
+
{
291
291
+
name = "microsoft.sourcelink.github";
292
292
+
version = "1.1.0-beta-20206-02";
293
293
+
src = fetchurl {
294
294
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.github/1.1.0-beta-20206-02/microsoft.sourcelink.github.1.1.0-beta-20206-02.nupkg";
295
295
+
sha256 = "0q1mgjjkwxvzn5v29pqiyg0j0jwi5qc0q04za9k1x138kliq2iba";
296
296
+
};
297
297
+
}
298
298
+
{
299
299
+
name = "microsoft.visualstudio.sdk.embedinteroptypes";
300
300
+
version = "15.0.15";
301
301
+
src = fetchurl {
302
302
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.sdk.embedinteroptypes/15.0.15/microsoft.visualstudio.sdk.embedinteroptypes.15.0.15.nupkg";
303
303
+
sha256 = "0chr3slzzcanwcyd9isx4gichqzmfh4zd3h83piw0r4xsww1wmpd";
304
304
+
};
305
305
+
}
306
306
+
{
307
307
+
name = "microsoft.visualstudio.setup.configuration.interop";
308
308
+
version = "1.16.30";
309
309
+
src = fetchurl {
310
310
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.setup.configuration.interop/1.16.30/microsoft.visualstudio.setup.configuration.interop.1.16.30.nupkg";
311
311
+
sha256 = "14022lx03vdcqlvbbdmbsxg5pqfx1rfq2jywxlyaz9v68cvsb0g4";
312
312
+
};
313
313
+
}
314
314
+
{
315
315
+
name = "microsoft.web.xdt";
316
316
+
version = "2.1.2";
317
317
+
src = fetchurl {
318
318
+
url = "https://api.nuget.org/v3-flatcontainer/microsoft.web.xdt/2.1.2/microsoft.web.xdt.2.1.2.nupkg";
319
319
+
sha256 = "1as6cih26xyxjsa5ibqik1fwbyxl58ivpngidr6w1nh5fi5zg9zw";
320
320
+
};
321
321
+
}
322
322
+
{
323
323
+
name = "microsoft.win32.primitives";
324
324
+
version = "4.0.1";
325
325
+
src = fetchurl {
326
326
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg";
327
327
+
sha256 = "1pviskapkc6qm108r0q2x15vkgyqsczf9xpmrlm42q68ainc9ai3";
328
328
+
};
329
329
+
}
330
330
+
{
331
331
+
name = "microsoft.win32.primitives";
332
332
+
version = "4.3.0";
333
333
+
src = fetchurl {
334
334
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg";
335
335
+
sha256 = "1nvwzj039y9ngdpz7zg0vszvrr3za2vfmjg222jc8c1dibk6y6ah";
336
336
+
};
337
337
+
}
338
338
+
{
339
339
+
name = "netstandard.library";
340
340
+
version = "1.6.1";
341
341
+
src = fetchurl {
342
342
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg";
343
343
+
sha256 = "03pxpc6dzpw56l8qhcb0wzvirqgs3c008jcakqxvfqmy25m3dnyn";
344
344
+
};
345
345
+
}
346
346
+
{
347
347
+
name = "newtonsoft.json";
348
348
+
version = "9.0.1";
349
349
+
src = fetchurl {
350
350
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg";
351
351
+
sha256 = "1qayanmqh3xiw0bjwm825j1n6nvbhc6yqkdpaawpyd0l71d5qh13";
352
352
+
};
353
353
+
}
354
354
+
{
355
355
+
name = "nuget.build.tasks";
356
356
+
version = "5.7.0-rtm.6710";
357
357
+
src = fetchurl {
358
358
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.build.tasks/5.7.0-rtm.6710/nuget.build.tasks.5.7.0-rtm.6710.nupkg";
359
359
+
sha256 = "0zwacvci3y8xyhy6jzc0wd20rzgb6lzv0ci8a4qg8ay315bmd9sp";
360
360
+
};
361
361
+
}
362
362
+
{
363
363
+
name = "nuget.build.tasks.pack";
364
364
+
version = "5.7.0-rtm.6710";
365
365
+
src = fetchurl {
366
366
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.build.tasks.pack/5.7.0-rtm.6710/nuget.build.tasks.pack.5.7.0-rtm.6710.nupkg";
367
367
+
sha256 = "16scfs0gwfs9r5kp65jfz3ip7w56xyni6fwgpmj0y6dbazzqm6zs";
368
368
+
};
369
369
+
}
370
370
+
{
371
371
+
name = "nuget.commandline";
372
372
+
version = "4.1.0";
373
373
+
src = fetchurl {
374
374
+
url = "https://api.nuget.org/v3-flatcontainer/nuget.commandline/4.1.0/nuget.commandline.4.1.0.nupkg";
375
375
+
sha256 = "03ik0rcdl7vdwxa9fx5cgl98yzb45swr08jmrnjk1ympjqvf94s1";
376
376
+
};
377
377
+
}
378
378
+
{
379
379
+
name = "nuget.commands";
380
380
+
version = "5.7.0-rtm.6710";
381
381
+
src = fetchurl {
382
382
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.commands/5.7.0-rtm.6710/nuget.commands.5.7.0-rtm.6710.nupkg";
383
383
+
sha256 = "0sm2x95q8y0sab7fsb2sqqhvw2x0scsavv968jxjf3ynb5n155q3";
384
384
+
};
385
385
+
}
386
386
+
{
387
387
+
name = "nuget.common";
388
388
+
version = "5.7.0-rtm.6710";
389
389
+
src = fetchurl {
390
390
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.common/5.7.0-rtm.6710/nuget.common.5.7.0-rtm.6710.nupkg";
391
391
+
sha256 = "07wxir208mmfzi2xxhn8xskbchx9d7nahmy2xqcx09mwkkr7m0qg";
392
392
+
};
393
393
+
}
394
394
+
{
395
395
+
name = "nuget.configuration";
396
396
+
version = "5.7.0-rtm.6710";
397
397
+
src = fetchurl {
398
398
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.configuration/5.7.0-rtm.6710/nuget.configuration.5.7.0-rtm.6710.nupkg";
399
399
+
sha256 = "1h9r627nj3bhwfwzf2b265s5zl00sj5z5x085a6l8qg2v8sig628";
400
400
+
};
401
401
+
}
402
402
+
{
403
403
+
name = "nuget.credentials";
404
404
+
version = "5.7.0-rtm.6710";
405
405
+
src = fetchurl {
406
406
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.credentials/5.7.0-rtm.6710/nuget.credentials.5.7.0-rtm.6710.nupkg";
407
407
+
sha256 = "06yd4ny5nzpxl6n3l57n585inj0bjybcmwcz0w3clyib9l2ybsjz";
408
408
+
};
409
409
+
}
410
410
+
{
411
411
+
name = "nuget.dependencyresolver.core";
412
412
+
version = "5.7.0-rtm.6710";
413
413
+
src = fetchurl {
414
414
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.dependencyresolver.core/5.7.0-rtm.6710/nuget.dependencyresolver.core.5.7.0-rtm.6710.nupkg";
415
415
+
sha256 = "0s3qlwg98qd5brfh6k9lsviqpij8n73ci54c9bmal56k12hkvfdm";
416
416
+
};
417
417
+
}
418
418
+
{
419
419
+
name = "nuget.frameworks";
420
420
+
version = "5.7.0-rtm.6710";
421
421
+
src = fetchurl {
422
422
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.frameworks/5.7.0-rtm.6710/nuget.frameworks.5.7.0-rtm.6710.nupkg";
423
423
+
sha256 = "05g4aaq3gc1p104dpanr255xcag399918m02vpanf29qpz3g325d";
424
424
+
};
425
425
+
}
426
426
+
{
427
427
+
name = "nuget.librarymodel";
428
428
+
version = "5.7.0-rtm.6710";
429
429
+
src = fetchurl {
430
430
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.librarymodel/5.7.0-rtm.6710/nuget.librarymodel.5.7.0-rtm.6710.nupkg";
431
431
+
sha256 = "1pj5y29f21ch4sgwg5xx4n0lsd1qiiyjy6ly6vaabfrimx4d0s23";
432
432
+
};
433
433
+
}
434
434
+
{
435
435
+
name = "nuget.packagemanagement";
436
436
+
version = "5.7.0-rtm.6710";
437
437
+
src = fetchurl {
438
438
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.packagemanagement/5.7.0-rtm.6710/nuget.packagemanagement.5.7.0-rtm.6710.nupkg";
439
439
+
sha256 = "1kiix6r2birnrlwki5mb5a7sbxh8wqj87f69qid6dr556x2w8h9z";
440
440
+
};
441
441
+
}
442
442
+
{
443
443
+
name = "nuget.packaging";
444
444
+
version = "5.7.0-rtm.6710";
445
445
+
src = fetchurl {
446
446
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.packaging/5.7.0-rtm.6710/nuget.packaging.5.7.0-rtm.6710.nupkg";
447
447
+
sha256 = "16frbw8k81cazary6d8sbdccr6hv57rc7rzdi9bagdnzvpm8h13l";
448
448
+
};
449
449
+
}
450
450
+
{
451
451
+
name = "nuget.projectmodel";
452
452
+
version = "5.7.0-rtm.6710";
453
453
+
src = fetchurl {
454
454
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.projectmodel/5.7.0-rtm.6710/nuget.projectmodel.5.7.0-rtm.6710.nupkg";
455
455
+
sha256 = "11i1kyqvmq70rkqrxhxnhsihaxx32ww0l9175473mmyia3wrbwyw";
456
456
+
};
457
457
+
}
458
458
+
{
459
459
+
name = "nuget.protocol";
460
460
+
version = "5.7.0-rtm.6710";
461
461
+
src = fetchurl {
462
462
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.protocol/5.7.0-rtm.6710/nuget.protocol.5.7.0-rtm.6710.nupkg";
463
463
+
sha256 = "1515p7a4kdm9wr8iizcmvzwqphxsfwqbnq41jv8mibrx7vih0s90";
464
464
+
};
465
465
+
}
466
466
+
{
467
467
+
name = "nuget.resolver";
468
468
+
version = "5.7.0-rtm.6710";
469
469
+
src = fetchurl {
470
470
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.resolver/5.7.0-rtm.6710/nuget.resolver.5.7.0-rtm.6710.nupkg";
471
471
+
sha256 = "17bm159knhx7iznm9ilk3mwb0n1gh1dp0ihhapyb1fmh9ings30b";
472
472
+
};
473
473
+
}
474
474
+
{
475
475
+
name = "nuget.versioning";
476
476
+
version = "5.7.0-rtm.6710";
477
477
+
src = fetchurl {
478
478
+
url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.versioning/5.7.0-rtm.6710/nuget.versioning.5.7.0-rtm.6710.nupkg";
479
479
+
sha256 = "1kj9xvcbwvvhhi45bi6f9m1cv8wx6y4xfmnxc8liwcgwh9gvwdjl";
480
480
+
};
481
481
+
}
482
482
+
{
483
483
+
name = "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl";
484
484
+
version = "4.3.0";
485
485
+
src = fetchurl {
486
486
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
487
487
+
sha256 = "10a3jqkh1h23qsn7pjlji61d7dph7qy8c6ssfjqmlgydm4rnin64";
488
488
+
};
489
489
+
}
490
490
+
{
491
491
+
name = "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl";
492
492
+
version = "4.3.0";
493
493
+
src = fetchurl {
494
494
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
495
495
+
sha256 = "1md38ys5h8srinnq9qxz47c9i27x7pv84avdi3rbq68hfkcslx93";
496
496
+
};
497
497
+
}
498
498
+
{
499
499
+
name = "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl";
500
500
+
version = "4.3.0";
501
501
+
src = fetchurl {
502
502
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
503
503
+
sha256 = "0cgvqxccg4lkxiyvw3jrn71pbybbbcd3i8v6v4przgrr7f7k6nfj";
504
504
+
};
505
505
+
}
506
506
+
{
507
507
+
name = "runtime.native.system";
508
508
+
version = "4.0.0";
509
509
+
src = fetchurl {
510
510
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg";
511
511
+
sha256 = "0fwsjhqj235hhy2zl8x3a828whn4nck7jr7hi09ccbk24xf4f17f";
512
512
+
};
513
513
+
}
514
514
+
{
515
515
+
name = "runtime.native.system";
516
516
+
version = "4.3.0";
517
517
+
src = fetchurl {
518
518
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg";
519
519
+
sha256 = "02gnfm33gf163kybkahfza8q10jp890hiczcnbg2aasf1n0jq857";
520
520
+
};
521
521
+
}
522
522
+
{
523
523
+
name = "runtime.native.system.io.compression";
524
524
+
version = "4.3.0";
525
525
+
src = fetchurl {
526
526
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg";
527
527
+
sha256 = "05370qi83pxfyn3whzkjjwb4q80vlr3mbz0dfa0hc0cbl5jx4y20";
528
528
+
};
529
529
+
}
530
530
+
{
531
531
+
name = "runtime.native.system.security.cryptography.openssl";
532
532
+
version = "4.3.0";
533
533
+
src = fetchurl {
534
534
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
535
535
+
sha256 = "1il7m43j4nq15xf01npgxd8q83q8mkk4xk07dd7g0sfsxm9k127d";
536
536
+
};
537
537
+
}
538
538
+
{
539
539
+
name = "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl";
540
540
+
version = "4.3.0";
541
541
+
src = fetchurl {
542
542
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
543
543
+
sha256 = "1pr8ji41rsifx6yh89xg1yw45g5snw96xxqw0g3q48rbdg5j79iw";
544
544
+
};
545
545
+
}
546
546
+
{
547
547
+
name = "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl";
548
548
+
version = "4.3.0";
549
549
+
src = fetchurl {
550
550
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
551
551
+
sha256 = "1r8hllb6fdb4adij7b7ld32hf5r5jxyqh4pacrvfgjckmyx8js8c";
552
552
+
};
553
553
+
}
554
554
+
{
555
555
+
name = "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl";
556
556
+
version = "4.3.0";
557
557
+
src = fetchurl {
558
558
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
559
559
+
sha256 = "16r149hajvr8ikyjbsw2m67yqfvxg6j1sb2slw9pzrly06mxmpks";
560
560
+
};
561
561
+
}
562
562
+
{
563
563
+
name = "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl";
564
564
+
version = "4.3.0";
565
565
+
src = fetchurl {
566
566
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
567
567
+
sha256 = "0j2f2v1nm7sys6qpljhp4s18zz3hblymjl60yrccqfac7yr9hxrq";
568
568
+
};
569
569
+
}
570
570
+
{
571
571
+
name = "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl";
572
572
+
version = "4.3.0";
573
573
+
src = fetchurl {
574
574
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
575
575
+
sha256 = "0wgz0y2fm6xcnlmpl1zh5963ribjbnzr2l6prsw3xi7sbfyjyi8c";
576
576
+
};
577
577
+
}
578
578
+
{
579
579
+
name = "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl";
580
580
+
version = "4.3.0";
581
581
+
src = fetchurl {
582
582
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
583
583
+
sha256 = "0qr13ykxj7zs7i8z0x63v8za2h33ndnvvw83wffp9xbb2fibj3gi";
584
584
+
};
585
585
+
}
586
586
+
{
587
587
+
name = "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl";
588
588
+
version = "4.3.0";
589
589
+
src = fetchurl {
590
590
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
591
591
+
sha256 = "1jg8gfh261zqmimf5ba76djr201q0bamm2385zxni5jnyyc4iis4";
592
592
+
};
593
593
+
}
594
594
+
{
595
595
+
name = "shouldly";
596
596
+
version = "3.0.0";
597
597
+
src = fetchurl {
598
598
+
url = "https://api.nuget.org/v3-flatcontainer/shouldly/3.0.0/shouldly.3.0.0.nupkg";
599
599
+
sha256 = "1hg28w898kl84rx57sclb2z9b76v5hxlwxig1xnb6fr81aahzlw3";
600
600
+
};
601
601
+
}
602
602
+
{
603
603
+
name = "sn";
604
604
+
version = "1.0.0";
605
605
+
src = fetchurl {
606
606
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/sn/1.0.0/sn.1.0.0.nupkg";
607
607
+
sha256 = "1012fcdc6vq2355v86h434s6p2nnqgpdapb7p25l4h39g5q8p1qs";
608
608
+
};
609
609
+
}
610
610
+
{
611
611
+
name = "system.appcontext";
612
612
+
version = "4.1.0";
613
613
+
src = fetchurl {
614
614
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg";
615
615
+
sha256 = "02vsx9l8ahzykjw6psf8yd5grndk63x4rw0lc0rl0s9z203694j3";
616
616
+
};
617
617
+
}
618
618
+
{
619
619
+
name = "system.appcontext";
620
620
+
version = "4.3.0";
621
621
+
src = fetchurl {
622
622
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg";
623
623
+
sha256 = "1ipqwwfphj4ndi6krnbali0f3260bmdg0lb9w7w00k3z20gwpjgy";
624
624
+
};
625
625
+
}
626
626
+
{
627
627
+
name = "system.buffers";
628
628
+
version = "4.3.0";
629
629
+
src = fetchurl {
630
630
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.3.0/system.buffers.4.3.0.nupkg";
631
631
+
sha256 = "1x5m2z3x8s4d0z13l8j6jfbaqpwh8dwyg930pcg67gz88zchfhq8";
632
632
+
};
633
633
+
}
634
634
+
{
635
635
+
name = "system.buffers";
636
636
+
version = "4.4.0";
637
637
+
src = fetchurl {
638
638
+
url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.4.0/system.buffers.4.4.0.nupkg";
639
639
+
sha256 = "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19";
640
640
+
};
641
641
+
}
642
642
+
{
643
643
+
name = "system.buffers";
644
644
+
version = "4.5.0";
645
645
+
src = fetchurl {
646
646
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.5.0/system.buffers.4.5.0.nupkg";
647
647
+
sha256 = "0c8qh10lhc8gcl58772i91lc97bljy3dvi6s2r8cjlf0240j5yll";
648
648
+
};
649
649
+
}
650
650
+
{
651
651
+
name = "system.collections";
652
652
+
version = "4.0.11";
653
653
+
src = fetchurl {
654
654
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections/4.0.11/system.collections.4.0.11.nupkg";
655
655
+
sha256 = "19kjsnpbpznh7qjsyxadw2i8pd4iikrlxwak12l749sli2qd77dj";
656
656
+
};
657
657
+
}
658
658
+
{
659
659
+
name = "system.collections";
660
660
+
version = "4.3.0";
661
661
+
src = fetchurl {
662
662
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections/4.3.0/system.collections.4.3.0.nupkg";
663
663
+
sha256 = "0209rky2iyiyqxg0amhmvy6c3fww6pbrq9ffynjnmapizmsvq7ya";
664
664
+
};
665
665
+
}
666
666
+
{
667
667
+
name = "system.collections.concurrent";
668
668
+
version = "4.0.12";
669
669
+
src = fetchurl {
670
670
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg";
671
671
+
sha256 = "1c4lv39n2i7k146njgk7334izcxjn06cnhmippc1vhwj3bqbzg62";
672
672
+
};
673
673
+
}
674
674
+
{
675
675
+
name = "system.collections.concurrent";
676
676
+
version = "4.3.0";
677
677
+
src = fetchurl {
678
678
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg";
679
679
+
sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z";
680
680
+
};
681
681
+
}
682
682
+
{
683
683
+
name = "system.collections.immutable";
684
684
+
version = "1.2.0";
685
685
+
src = fetchurl {
686
686
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg";
687
687
+
sha256 = "1ywivzq43lqlh42qywq6v57yf499dya5rbzk6k7fnkj1121fr7kw";
688
688
+
};
689
689
+
}
690
690
+
{
691
691
+
name = "system.collections.immutable";
692
692
+
version = "1.5.0";
693
693
+
src = fetchurl {
694
694
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.5.0/system.collections.immutable.1.5.0.nupkg";
695
695
+
sha256 = "1yn0g10x5lss68i5n5x9q9z1kbxcbblrwp51ph79cgbi01ga999q";
696
696
+
};
697
697
+
}
698
698
+
{
699
699
+
name = "system.collections.nongeneric";
700
700
+
version = "4.0.1";
701
701
+
src = fetchurl {
702
702
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg";
703
703
+
sha256 = "1wj1ddyycsggg3sjq0iflzyj93m7ny8mc2dpzvh5iqy89lj3gx1m";
704
704
+
};
705
705
+
}
706
706
+
{
707
707
+
name = "system.console";
708
708
+
version = "4.0.0";
709
709
+
src = fetchurl {
710
710
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.0.0/system.console.4.0.0.nupkg";
711
711
+
sha256 = "0fw0ap3c0svxjbkgr5yrkck36lbrijhsx48v53xkam5y6m0vh1s3";
712
712
+
};
713
713
+
}
714
714
+
{
715
715
+
name = "system.console";
716
716
+
version = "4.3.0";
717
717
+
src = fetchurl {
718
718
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.3.0/system.console.4.3.0.nupkg";
719
719
+
sha256 = "0hyp57lqq986hnj7h017mz1qa1p3qqw3n98nxngdj947ck4mwmpd";
720
720
+
};
721
721
+
}
722
722
+
{
723
723
+
name = "system.diagnostics.debug";
724
724
+
version = "4.0.11";
725
725
+
src = fetchurl {
726
726
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg";
727
727
+
sha256 = "0j4czvcp72qamsj8irwg0sv5lqil4g6q1ghqsm40g5f3380fxcn3";
728
728
+
};
729
729
+
}
730
730
+
{
731
731
+
name = "system.diagnostics.debug";
732
732
+
version = "4.3.0";
733
733
+
src = fetchurl {
734
734
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg";
735
735
+
sha256 = "02az3f9n0sy9hpjqq05dkwa4d4bgyrs57b69byya20zydvyxxm9z";
736
736
+
};
737
737
+
}
738
738
+
{
739
739
+
name = "system.diagnostics.diagnosticsource";
740
740
+
version = "4.3.0";
741
741
+
src = fetchurl {
742
742
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg";
743
743
+
sha256 = "0rqi76pqplmk8lzqhwxkkn6ramk56bm66ijg3zki9gzaaqx7fbfk";
744
744
+
};
745
745
+
}
746
746
+
{
747
747
+
name = "system.diagnostics.process";
748
748
+
version = "4.1.0";
749
749
+
src = fetchurl {
750
750
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg";
751
751
+
sha256 = "1fzm5jrfs4awz0qc2yav1assdnx45j5crpva50a4s0l0dnnvf2jh";
752
752
+
};
753
753
+
}
754
754
+
{
755
755
+
name = "system.diagnostics.tools";
756
756
+
version = "4.3.0";
757
757
+
src = fetchurl {
758
758
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg";
759
759
+
sha256 = "0fmmnsvnjxh4gjw2jjix3f7ndvhdh9h4rb4nbjk285c2rgfp2kyn";
760
760
+
};
761
761
+
}
762
762
+
{
763
763
+
name = "system.diagnostics.tracesource";
764
764
+
version = "4.0.0";
765
765
+
src = fetchurl {
766
766
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg";
767
767
+
sha256 = "0dwq0z7p3jpxp4y9x1k3pglrs572xx5dsp4nmnz5v5wr6a1kdc8l";
768
768
+
};
769
769
+
}
770
770
+
{
771
771
+
name = "system.diagnostics.tracing";
772
772
+
version = "4.1.0";
773
773
+
src = fetchurl {
774
774
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg";
775
775
+
sha256 = "0lzdnq31spwv2xd9xkf0ph4zlg7bqifcvp1915jk1hb5fjjf1byp";
776
776
+
};
777
777
+
}
778
778
+
{
779
779
+
name = "system.diagnostics.tracing";
780
780
+
version = "4.3.0";
781
781
+
src = fetchurl {
782
782
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg";
783
783
+
sha256 = "0zwc9qk2ig6h74dnn4hxlyhnfchp6yd6hqv39dy0dhp3xagwfqp3";
784
784
+
};
785
785
+
}
786
786
+
{
787
787
+
name = "system.globalization";
788
788
+
version = "4.0.11";
789
789
+
src = fetchurl {
790
790
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg";
791
791
+
sha256 = "04pycnih66s15rbwss94ylm0svfr276ym4w4w14bb9g56dk0wwyy";
792
792
+
};
793
793
+
}
794
794
+
{
795
795
+
name = "system.globalization";
796
796
+
version = "4.3.0";
797
797
+
src = fetchurl {
798
798
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.3.0/system.globalization.4.3.0.nupkg";
799
799
+
sha256 = "1sydnlnaqmarcfs1cvaa3rpax7qhzd8wd67f74k89lr3k77cagfh";
800
800
+
};
801
801
+
}
802
802
+
{
803
803
+
name = "system.globalization.calendars";
804
804
+
version = "4.3.0";
805
805
+
src = fetchurl {
806
806
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg";
807
807
+
sha256 = "1qfa54p7ab2himyry3lf0j85gpz3mx9yj0sy0v2j9i94ndvk1w7c";
808
808
+
};
809
809
+
}
810
810
+
{
811
811
+
name = "system.io";
812
812
+
version = "4.1.0";
813
813
+
src = fetchurl {
814
814
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg";
815
815
+
sha256 = "0drs586wimx7vzwqfdb72k640iz24645cwz053n1f08752bjkzq8";
816
816
+
};
817
817
+
}
818
818
+
{
819
819
+
name = "system.io";
820
820
+
version = "4.3.0";
821
821
+
src = fetchurl {
822
822
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.3.0/system.io.4.3.0.nupkg";
823
823
+
sha256 = "1n3qypsgn18pg13vyjcnchz3zbfajdk6swl1wzf0hv6324v8xyd7";
824
824
+
};
825
825
+
}
826
826
+
{
827
827
+
name = "system.io.compression";
828
828
+
version = "4.3.0";
829
829
+
src = fetchurl {
830
830
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg";
831
831
+
sha256 = "0mxp384amfdapgsf6fkyf3c5q10jc2yy55v3vim8wq1w8aim1qcf";
832
832
+
};
833
833
+
}
834
834
+
{
835
835
+
name = "system.io.compression.zipfile";
836
836
+
version = "4.3.0";
837
837
+
src = fetchurl {
838
838
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg";
839
839
+
sha256 = "08fbnsgbbnfj7d6k5zdqvm3580iqwrq4qzbnyq6iw9g93kmlyh5p";
840
840
+
};
841
841
+
}
842
842
+
{
843
843
+
name = "system.io.filesystem";
844
844
+
version = "4.0.1";
845
845
+
src = fetchurl {
846
846
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg";
847
847
+
sha256 = "0mp3n5214lzxz7qn2y5k7f2y9qv067xa23bnbyyhpmlkbl3grwc6";
848
848
+
};
849
849
+
}
850
850
+
{
851
851
+
name = "system.io.filesystem";
852
852
+
version = "4.3.0";
853
853
+
src = fetchurl {
854
854
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg";
855
855
+
sha256 = "1p4r4n4minxgir17xh7rwv503fj1zgnm1vb24and7v2n6id4ma61";
856
856
+
};
857
857
+
}
858
858
+
{
859
859
+
name = "system.io.filesystem.primitives";
860
860
+
version = "4.0.1";
861
861
+
src = fetchurl {
862
862
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg";
863
863
+
sha256 = "12mspig2fvzhvbdm22yk081lpn7rc45xwwricc5vnaszgjp83gns";
864
864
+
};
865
865
+
}
866
866
+
{
867
867
+
name = "system.io.filesystem.primitives";
868
868
+
version = "4.3.0";
869
869
+
src = fetchurl {
870
870
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg";
871
871
+
sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn";
872
872
+
};
873
873
+
}
874
874
+
{
875
875
+
name = "system.linq";
876
876
+
version = "4.1.0";
877
877
+
src = fetchurl {
878
878
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg";
879
879
+
sha256 = "1n404dvsz6p2d18q9k3ip1vyl8ffbsz6xvc2bl2bba9ccpyjhygm";
880
880
+
};
881
881
+
}
882
882
+
{
883
883
+
name = "system.linq";
884
884
+
version = "4.3.0";
885
885
+
src = fetchurl {
886
886
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg";
887
887
+
sha256 = "1419wbklbn2vliwfy77p759k084h8jp9i3559shbhrzfxjr2fcv9";
888
888
+
};
889
889
+
}
890
890
+
{
891
891
+
name = "system.linq.expressions";
892
892
+
version = "4.3.0";
893
893
+
src = fetchurl {
894
894
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg";
895
895
+
sha256 = "177cz5hgcbq8lpgvdjmkpsx4kr645wpxhbgh3aw3f28nqlmhl70j";
896
896
+
};
897
897
+
}
898
898
+
{
899
899
+
name = "system.memory";
900
900
+
version = "4.5.3";
901
901
+
src = fetchurl {
902
902
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.memory/4.5.3/system.memory.4.5.3.nupkg";
903
903
+
sha256 = "1igqq2lqrijpbn66w1020cyyqiwy80i9fkqrmalamjmvmyg28p8m";
904
904
+
};
905
905
+
}
906
906
+
{
907
907
+
name = "system.net.http";
908
908
+
version = "4.3.0";
909
909
+
src = fetchurl {
910
910
+
url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.0/system.net.http.4.3.0.nupkg";
911
911
+
sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j";
912
912
+
};
913
913
+
}
914
914
+
{
915
915
+
name = "system.net.primitives";
916
916
+
version = "4.3.0";
917
917
+
src = fetchurl {
918
918
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg";
919
919
+
sha256 = "1zfrz4p3nmz3cnb0i8xwc76175328dfgrlmp3bcwvp5vplv3ncnz";
920
920
+
};
921
921
+
}
922
922
+
{
923
923
+
name = "system.net.sockets";
924
924
+
version = "4.3.0";
925
925
+
src = fetchurl {
926
926
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg";
927
927
+
sha256 = "026ghgh25lw953aqd83npk856g4bwi6a8y7jc695qj8lb929yp5s";
928
928
+
};
929
929
+
}
930
930
+
{
931
931
+
name = "system.numerics.vectors";
932
932
+
version = "4.4.0";
933
933
+
src = fetchurl {
934
934
+
url = "https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg";
935
935
+
sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba";
936
936
+
};
937
937
+
}
938
938
+
{
939
939
+
name = "system.numerics.vectors";
940
940
+
version = "4.5.0";
941
941
+
src = fetchurl {
942
942
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg";
943
943
+
sha256 = "1r66gjpvbmgr3216ch2fx9zzd08fb78br4hzblvsvi7wfwp6w7ip";
944
944
+
};
945
945
+
}
946
946
+
{
947
947
+
name = "system.objectmodel";
948
948
+
version = "4.0.12";
949
949
+
src = fetchurl {
950
950
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg";
951
951
+
sha256 = "06abwzrai4k999qmc8bkcvq26px2ws9gk04c01c1ix9fw02pf546";
952
952
+
};
953
953
+
}
954
954
+
{
955
955
+
name = "system.objectmodel";
956
956
+
version = "4.3.0";
957
957
+
src = fetchurl {
958
958
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg";
959
959
+
sha256 = "18mryszf4a66a52v9din5wgqiykp0ficl5zl5l9grkrisjnl7jh4";
960
960
+
};
961
961
+
}
962
962
+
{
963
963
+
name = "system.private.datacontractserialization";
964
964
+
version = "4.1.1";
965
965
+
src = fetchurl {
966
966
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg";
967
967
+
sha256 = "1hrbq85s14x7ck6an570z8p7slprlsswxlydz0pdzfmnqwpv0qbi";
968
968
+
};
969
969
+
}
970
970
+
{
971
971
+
name = "system.reflection";
972
972
+
version = "4.1.0";
973
973
+
src = fetchurl {
974
974
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.1.0/system.reflection.4.1.0.nupkg";
975
975
+
sha256 = "003bmllpdf35jsbbhgsi4a24rqprdhgjpi3d76jk7sgllbh6p1wj";
976
976
+
};
977
977
+
}
978
978
+
{
979
979
+
name = "system.reflection";
980
980
+
version = "4.3.0";
981
981
+
src = fetchurl {
982
982
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.3.0/system.reflection.4.3.0.nupkg";
983
983
+
sha256 = "00f1n6r8z6zw3mfhrfg402s6fj95jj9d8z5s62kfmd7pdsnv39xi";
984
984
+
};
985
985
+
}
986
986
+
{
987
987
+
name = "system.reflection.emit";
988
988
+
version = "4.0.1";
989
989
+
src = fetchurl {
990
990
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg";
991
991
+
sha256 = "0s1cpkpnn2x6bicspj1x7z7zlfg1h5iy8mvr5bcq55fgpyf6xin8";
992
992
+
};
993
993
+
}
994
994
+
{
995
995
+
name = "system.reflection.emit.ilgeneration";
996
996
+
version = "4.0.1";
997
997
+
src = fetchurl {
998
998
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg";
999
999
+
sha256 = "0q789n72y47jkld2076khan7zz2gm04znpnz0nznin7ykp8aa0ih";
1000
1000
+
};
1001
1001
+
}
1002
1002
+
{
1003
1003
+
name = "system.reflection.emit.lightweight";
1004
1004
+
version = "4.0.1";
1005
1005
+
src = fetchurl {
1006
1006
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg";
1007
1007
+
sha256 = "10hsbdar8vzvq3izv3v8a93rz7brnmrcrcl5c0nvy8vlmdk41jlx";
1008
1008
+
};
1009
1009
+
}
1010
1010
+
{
1011
1011
+
name = "system.reflection.extensions";
1012
1012
+
version = "4.0.1";
1013
1013
+
src = fetchurl {
1014
1014
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg";
1015
1015
+
sha256 = "1n1gig2nlycrz1rzy1gi56gcw568ibdpnbknjy7gv9i76aw2kvy7";
1016
1016
+
};
1017
1017
+
}
1018
1018
+
{
1019
1019
+
name = "system.reflection.extensions";
1020
1020
+
version = "4.3.0";
1021
1021
+
src = fetchurl {
1022
1022
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg";
1023
1023
+
sha256 = "020gr3yjb3aa49hm4qyxqrz318ll2rnc8qpcby341ik0gr4ij3wz";
1024
1024
+
};
1025
1025
+
}
1026
1026
+
{
1027
1027
+
name = "system.reflection.metadata";
1028
1028
+
version = "1.6.0";
1029
1029
+
src = fetchurl {
1030
1030
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg";
1031
1031
+
sha256 = "1kw4xsm093zd10jf3vjc2lxmv0zq6chi3g8rka8w0d3l3a5hh3ly";
1032
1032
+
};
1033
1033
+
}
1034
1034
+
{
1035
1035
+
name = "system.reflection.primitives";
1036
1036
+
version = "4.0.1";
1037
1037
+
src = fetchurl {
1038
1038
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg";
1039
1039
+
sha256 = "1r0a1xhlrdr6kdhia9r6rcywds4r8wbk0jagsac6x3rc0kq5f1yi";
1040
1040
+
};
1041
1041
+
}
1042
1042
+
{
1043
1043
+
name = "system.reflection.primitives";
1044
1044
+
version = "4.3.0";
1045
1045
+
src = fetchurl {
1046
1046
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg";
1047
1047
+
sha256 = "1b10cxizldqk8niyihhxsabfjkyrlnkgf4im038lbxs3pq7a12yl";
1048
1048
+
};
1049
1049
+
}
1050
1050
+
{
1051
1051
+
name = "system.reflection.typeextensions";
1052
1052
+
version = "4.1.0";
1053
1053
+
src = fetchurl {
1054
1054
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg";
1055
1055
+
sha256 = "13y2gvadvzgv5hrizwd53xyciq88p8mpclyqfmikspij4pyb5328";
1056
1056
+
};
1057
1057
+
}
1058
1058
+
{
1059
1059
+
name = "system.resources.extensions";
1060
1060
+
version = "4.6.0";
1061
1061
+
src = fetchurl {
1062
1062
+
url = "https://api.nuget.org/v3-flatcontainer/system.resources.extensions/4.6.0/system.resources.extensions.4.6.0.nupkg";
1063
1063
+
sha256 = "0inch9jgchgmsg3xjivbhh9mpin40mhdd8dgf4i1p3g42i0hzc0j";
1064
1064
+
};
1065
1065
+
}
1066
1066
+
{
1067
1067
+
name = "system.resources.reader";
1068
1068
+
version = "4.0.0";
1069
1069
+
src = fetchurl {
1070
1070
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg";
1071
1071
+
sha256 = "0nipl2mayrbgf62mbi3z9crk9hvcrxnry008a33iyk9xy45rmyk1";
1072
1072
+
};
1073
1073
+
}
1074
1074
+
{
1075
1075
+
name = "system.resources.resourcemanager";
1076
1076
+
version = "4.0.1";
1077
1077
+
src = fetchurl {
1078
1078
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg";
1079
1079
+
sha256 = "1hjlz6rvr5c7qmvmbv1a338zqjl1dbj0qqidwv9z0ldy4jmg89cy";
1080
1080
+
};
1081
1081
+
}
1082
1082
+
{
1083
1083
+
name = "system.resources.resourcemanager";
1084
1084
+
version = "4.3.0";
1085
1085
+
src = fetchurl {
1086
1086
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg";
1087
1087
+
sha256 = "1bi65kd8fps7gncs053pawc0j44pz4wcgdj3jcw7gpjr4j0zyxwi";
1088
1088
+
};
1089
1089
+
}
1090
1090
+
{
1091
1091
+
name = "system.runtime";
1092
1092
+
version = "4.1.0";
1093
1093
+
src = fetchurl {
1094
1094
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg";
1095
1095
+
sha256 = "05n73j0s3qgjnp5w2jxaacn93kpq14cldxncv15v04b3lla30mpr";
1096
1096
+
};
1097
1097
+
}
1098
1098
+
{
1099
1099
+
name = "system.runtime";
1100
1100
+
version = "4.3.0";
1101
1101
+
src = fetchurl {
1102
1102
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.3.0/system.runtime.4.3.0.nupkg";
1103
1103
+
sha256 = "0cffdplihjrivvcayzvz32gmv7yissf2pmyaga4fw7g262rf5mxi";
1104
1104
+
};
1105
1105
+
}
1106
1106
+
{
1107
1107
+
name = "system.runtime.compilerservices.unsafe";
1108
1108
+
version = "4.5.2";
1109
1109
+
src = fetchurl {
1110
1110
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg";
1111
1111
+
sha256 = "0bp6in9qqhprbk85wd0cnfnpjcwdknyyc9rk0891kldx3alnd4h7";
1112
1112
+
};
1113
1113
+
}
1114
1114
+
{
1115
1115
+
name = "system.runtime.compilerservices.unsafe";
1116
1116
+
version = "4.7.0";
1117
1117
+
src = fetchurl {
1118
1118
+
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.0/system.runtime.compilerservices.unsafe.4.7.0.nupkg";
1119
1119
+
sha256 = "16r6sn4czfjk8qhnz7bnqlyiaaszr0ihinb7mq9zzr1wba257r54";
1120
1120
+
};
1121
1121
+
}
1122
1122
+
{
1123
1123
+
name = "system.runtime.extensions";
1124
1124
+
version = "4.1.0";
1125
1125
+
src = fetchurl {
1126
1126
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg";
1127
1127
+
sha256 = "0bms87hf2q90kkfg75ljdk09410fl64326wpvhqgfkgw019704yc";
1128
1128
+
};
1129
1129
+
}
1130
1130
+
{
1131
1131
+
name = "system.runtime.extensions";
1132
1132
+
version = "4.3.0";
1133
1133
+
src = fetchurl {
1134
1134
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg";
1135
1135
+
sha256 = "18qn6zjvpngda5bd9nrpphwy5lppmkla86jk5bdapz6ar44ic8wy";
1136
1136
+
};
1137
1137
+
}
1138
1138
+
{
1139
1139
+
name = "system.runtime.handles";
1140
1140
+
version = "4.0.1";
1141
1141
+
src = fetchurl {
1142
1142
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg";
1143
1143
+
sha256 = "00kzqs5d8gm1ppc13idybcdrr07yk2a7f5bdrb0mw7c1bafjp1px";
1144
1144
+
};
1145
1145
+
}
1146
1146
+
{
1147
1147
+
name = "system.runtime.handles";
1148
1148
+
version = "4.3.0";
1149
1149
+
src = fetchurl {
1150
1150
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg";
1151
1151
+
sha256 = "1klsizwincb42v9yl6m9czgqcmxr7a1h1ri687ldqy4w15718adi";
1152
1152
+
};
1153
1153
+
}
1154
1154
+
{
1155
1155
+
name = "system.runtime.interopservices";
1156
1156
+
version = "4.1.0";
1157
1157
+
src = fetchurl {
1158
1158
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg";
1159
1159
+
sha256 = "1876kwm4ziikya5s75sb1cp23qwdsd7xhlmlb9gaglibzwkd8b9d";
1160
1160
+
};
1161
1161
+
}
1162
1162
+
{
1163
1163
+
name = "system.runtime.interopservices";
1164
1164
+
version = "4.3.0";
1165
1165
+
src = fetchurl {
1166
1166
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg";
1167
1167
+
sha256 = "0l13wfr3y4rq667cyw1rl3bdq24zhs34jwv61piwnv77flwr4brq";
1168
1168
+
};
1169
1169
+
}
1170
1170
+
{
1171
1171
+
name = "system.runtime.interopservices.runtimeinformation";
1172
1172
+
version = "4.0.0";
1173
1173
+
src = fetchurl {
1174
1174
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg";
1175
1175
+
sha256 = "05pmsmrjmy3mk4r8xqihc3w7128d4qccjg6wkyd7zc2yq67w7xmg";
1176
1176
+
};
1177
1177
+
}
1178
1178
+
{
1179
1179
+
name = "system.runtime.interopservices.runtimeinformation";
1180
1180
+
version = "4.3.0";
1181
1181
+
src = fetchurl {
1182
1182
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg";
1183
1183
+
sha256 = "131108h1vnayxx6ms2axinja3sqckb1b8z9v8fjnaf9ix8zvmaxq";
1184
1184
+
};
1185
1185
+
}
1186
1186
+
{
1187
1187
+
name = "system.runtime.numerics";
1188
1188
+
version = "4.3.0";
1189
1189
+
src = fetchurl {
1190
1190
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg";
1191
1191
+
sha256 = "06i4k2ng909fvlq9dhglgyp0iv5vj6b42vqlsvk2gcn6ssgkq9ya";
1192
1192
+
};
1193
1193
+
}
1194
1194
+
{
1195
1195
+
name = "system.runtime.serialization.primitives";
1196
1196
+
version = "4.1.1";
1197
1197
+
src = fetchurl {
1198
1198
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg";
1199
1199
+
sha256 = "1mqwgsda61xm2p4chcniypnnrahh8l6j8c9j45jd2r0hmrvnsc4k";
1200
1200
+
};
1201
1201
+
}
1202
1202
+
{
1203
1203
+
name = "system.runtime.serialization.xml";
1204
1204
+
version = "4.1.1";
1205
1205
+
src = fetchurl {
1206
1206
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg";
1207
1207
+
sha256 = "19mwnihzks4l2q73bsg5ylbawxqcji3slzzp0v46v6xvvrq480wq";
1208
1208
+
};
1209
1209
+
}
1210
1210
+
{
1211
1211
+
name = "system.security.cryptography.algorithms";
1212
1212
+
version = "4.3.0";
1213
1213
+
src = fetchurl {
1214
1214
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg";
1215
1215
+
sha256 = "04lfa74ll34fk2r42fkdldvcgjp27i3d5zbxx5bxx1dfpsqhkavv";
1216
1216
+
};
1217
1217
+
}
1218
1218
+
{
1219
1219
+
name = "system.security.cryptography.encoding";
1220
1220
+
version = "4.3.0";
1221
1221
+
src = fetchurl {
1222
1222
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg";
1223
1223
+
sha256 = "1icdqp1c8f7971h1vkls87m8bdxs7xqg4xs7ygi0x3n56pjbqfpi";
1224
1224
+
};
1225
1225
+
}
1226
1226
+
{
1227
1227
+
name = "system.security.cryptography.primitives";
1228
1228
+
version = "4.3.0";
1229
1229
+
src = fetchurl {
1230
1230
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg";
1231
1231
+
sha256 = "02dsnjxw9bymk0a2qnnlavpi0jq8832dviblv5f9icmwldridc8y";
1232
1232
+
};
1233
1233
+
}
1234
1234
+
{
1235
1235
+
name = "system.security.cryptography.x509certificates";
1236
1236
+
version = "4.3.0";
1237
1237
+
src = fetchurl {
1238
1238
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg";
1239
1239
+
sha256 = "0p02s2k8gcx86ys67ydbgrlnp5q7f073jnlgpliqp4f7d2wiwszd";
1240
1240
+
};
1241
1241
+
}
1242
1242
+
{
1243
1243
+
name = "system.security.principal.windows";
1244
1244
+
version = "4.7.0";
1245
1245
+
src = fetchurl {
1246
1246
+
url = "https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg";
1247
1247
+
sha256 = "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d";
1248
1248
+
};
1249
1249
+
}
1250
1250
+
{
1251
1251
+
name = "system.text.encoding";
1252
1252
+
version = "4.0.11";
1253
1253
+
src = fetchurl {
1254
1254
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg";
1255
1255
+
sha256 = "0q829jqhv2sdggb3xjlbdp65g2670w9gw64q2irdzr47gl7zpzyl";
1256
1256
+
};
1257
1257
+
}
1258
1258
+
{
1259
1259
+
name = "system.text.encoding";
1260
1260
+
version = "4.3.0";
1261
1261
+
src = fetchurl {
1262
1262
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg";
1263
1263
+
sha256 = "04fsaadvsnjz6jmf88n26md9zcmvwgn2dkwqkjvhf5apph8gi44g";
1264
1264
+
};
1265
1265
+
}
1266
1266
+
{
1267
1267
+
name = "system.text.encoding.codepages";
1268
1268
+
version = "4.0.1";
1269
1269
+
src = fetchurl {
1270
1270
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg";
1271
1271
+
sha256 = "0ixii299wspn434ccjjv8pcvxww3qjl8257r0dx7myh816v3a9sz";
1272
1272
+
};
1273
1273
+
}
1274
1274
+
{
1275
1275
+
name = "system.text.encoding.extensions";
1276
1276
+
version = "4.0.11";
1277
1277
+
src = fetchurl {
1278
1278
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg";
1279
1279
+
sha256 = "15f89w0vwnfp10544wbq0z6fjqn7ig03q3kl16x2pp47rac6yj17";
1280
1280
+
};
1281
1281
+
}
1282
1282
+
{
1283
1283
+
name = "system.text.encoding.extensions";
1284
1284
+
version = "4.3.0";
1285
1285
+
src = fetchurl {
1286
1286
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg";
1287
1287
+
sha256 = "1w6jxdkrczxwyw2bbs9ng0zi2nk3paznyhm1vnh5vc8v10k96v98";
1288
1288
+
};
1289
1289
+
}
1290
1290
+
{
1291
1291
+
name = "system.text.encodings.web";
1292
1292
+
version = "4.7.0";
1293
1293
+
src = fetchurl {
1294
1294
+
url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/4.7.0/system.text.encodings.web.4.7.0.nupkg";
1295
1295
+
sha256 = "0sd3bihfar5rwm6nib4lhyys306nkm02qvk6p6sgzmnlfmma2wn3";
1296
1296
+
};
1297
1297
+
}
1298
1298
+
{
1299
1299
+
name = "system.text.json";
1300
1300
+
version = "4.7.0";
1301
1301
+
src = fetchurl {
1302
1302
+
url = "https://api.nuget.org/v3-flatcontainer/system.text.json/4.7.0/system.text.json.4.7.0.nupkg";
1303
1303
+
sha256 = "0fp3xrysccm5dkaac4yb51d793vywxks978kkl5x4db9gw29rfdr";
1304
1304
+
};
1305
1305
+
}
1306
1306
+
{
1307
1307
+
name = "system.text.regularexpressions";
1308
1308
+
version = "4.1.0";
1309
1309
+
src = fetchurl {
1310
1310
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg";
1311
1311
+
sha256 = "1ndgfw99bds4772p7578ylcb4whls76qhiz9a3bh4qy9si48afcv";
1312
1312
+
};
1313
1313
+
}
1314
1314
+
{
1315
1315
+
name = "system.text.regularexpressions";
1316
1316
+
version = "4.3.0";
1317
1317
+
src = fetchurl {
1318
1318
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg";
1319
1319
+
sha256 = "1510mdlfdc42vyp738wvmqdy3sir2yyh5w3da3v5i0ar2c4jn6wi";
1320
1320
+
};
1321
1321
+
}
1322
1322
+
{
1323
1323
+
name = "system.threading";
1324
1324
+
version = "4.0.11";
1325
1325
+
src = fetchurl {
1326
1326
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg";
1327
1327
+
sha256 = "12w6vdai88ldgnv9f71rybwyvlzkk1nr57d7f8cz6rajwliz7h6g";
1328
1328
+
};
1329
1329
+
}
1330
1330
+
{
1331
1331
+
name = "system.threading";
1332
1332
+
version = "4.3.0";
1333
1333
+
src = fetchurl {
1334
1334
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading/4.3.0/system.threading.4.3.0.nupkg";
1335
1335
+
sha256 = "1ad1drl7q1f8fmfaq3r2bswg58nbc2y01mrbhlwkv41ij1ij3fz3";
1336
1336
+
};
1337
1337
+
}
1338
1338
+
{
1339
1339
+
name = "system.threading.tasks";
1340
1340
+
version = "4.0.11";
1341
1341
+
src = fetchurl {
1342
1342
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg";
1343
1343
+
sha256 = "03gvdi1qk4kyws4sjfl5w3fy9qbrq0d0i72n7a8d59lchm6l9zjk";
1344
1344
+
};
1345
1345
+
}
1346
1346
+
{
1347
1347
+
name = "system.threading.tasks";
1348
1348
+
version = "4.3.0";
1349
1349
+
src = fetchurl {
1350
1350
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg";
1351
1351
+
sha256 = "0y0gw9q62dchzhk3fcdcdfhk6c5zr0a6rs34qfdbkgksnva10cm1";
1352
1352
+
};
1353
1353
+
}
1354
1354
+
{
1355
1355
+
name = "system.threading.tasks.dataflow";
1356
1356
+
version = "4.9.0";
1357
1357
+
src = fetchurl {
1358
1358
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.dataflow/4.9.0/system.threading.tasks.dataflow.4.9.0.nupkg";
1359
1359
+
sha256 = "01lhdmb9w4h82yaqrqpzvz5cv2b228kj332k2h6nz0qycpjd6b0y";
1360
1360
+
};
1361
1361
+
}
1362
1362
+
{
1363
1363
+
name = "system.threading.tasks.extensions";
1364
1364
+
version = "4.0.0";
1365
1365
+
src = fetchurl {
1366
1366
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg";
1367
1367
+
sha256 = "1dxi845z4cd83v2ph7dq9ykf5gxr6gaw9k29wckv5zhx1rjwprfg";
1368
1368
+
};
1369
1369
+
}
1370
1370
+
{
1371
1371
+
name = "system.threading.tasks.extensions";
1372
1372
+
version = "4.3.0";
1373
1373
+
src = fetchurl {
1374
1374
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg";
1375
1375
+
sha256 = "1dr14m9c2psrvavv74dzwbi09avn0hxmdvr6z03f96mxkrk3cm1d";
1376
1376
+
};
1377
1377
+
}
1378
1378
+
{
1379
1379
+
name = "system.threading.tasks.extensions";
1380
1380
+
version = "4.5.2";
1381
1381
+
src = fetchurl {
1382
1382
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.5.2/system.threading.tasks.extensions.4.5.2.nupkg";
1383
1383
+
sha256 = "03qkna7pwxaxnxg3ydc1vpjzzrizq55gm7w519gqlmd6yca61vzm";
1384
1384
+
};
1385
1385
+
}
1386
1386
+
{
1387
1387
+
name = "system.threading.tasks.parallel";
1388
1388
+
version = "4.0.1";
1389
1389
+
src = fetchurl {
1390
1390
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.parallel/4.0.1/system.threading.tasks.parallel.4.0.1.nupkg";
1391
1391
+
sha256 = "00l76cv7yys3ilrpi32xrs8qk45gmliqvmw2w2zxg3h21y6r0xc0";
1392
1392
+
};
1393
1393
+
}
1394
1394
+
{
1395
1395
+
name = "system.threading.thread";
1396
1396
+
version = "4.0.0";
1397
1397
+
src = fetchurl {
1398
1398
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg";
1399
1399
+
sha256 = "0ay1bjmyk0jv6plj9layh3nhr7lnl5a6gzlqi2pgqglb1s9j1x4s";
1400
1400
+
};
1401
1401
+
}
1402
1402
+
{
1403
1403
+
name = "system.threading.timer";
1404
1404
+
version = "4.0.1";
1405
1405
+
src = fetchurl {
1406
1406
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg";
1407
1407
+
sha256 = "0imrcq43k6ii97xpfkwzsvhs6idvgc6mi5c9p7ah828wbaxqh1my";
1408
1408
+
};
1409
1409
+
}
1410
1410
+
{
1411
1411
+
name = "system.threading.timer";
1412
1412
+
version = "4.3.0";
1413
1413
+
src = fetchurl {
1414
1414
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg";
1415
1415
+
sha256 = "11p4yxkcn2amlxhwipyia38k8glpam5c9l47y5dvjdicg42dgxl8";
1416
1416
+
};
1417
1417
+
}
1418
1418
+
{
1419
1419
+
name = "system.valuetuple";
1420
1420
+
version = "4.5.0";
1421
1421
+
src = fetchurl {
1422
1422
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg";
1423
1423
+
sha256 = "068v2h0v8873jh3zc06bxcfzch9frggak1s9csyisl7xzwdijsqn";
1424
1424
+
};
1425
1425
+
}
1426
1426
+
{
1427
1427
+
name = "system.xml.readerwriter";
1428
1428
+
version = "4.0.11";
1429
1429
+
src = fetchurl {
1430
1430
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg";
1431
1431
+
sha256 = "04ijmcrb40x08br0fdpxmrm0fw2ahpiqjs9wmrqx38ngf96irb7l";
1432
1432
+
};
1433
1433
+
}
1434
1434
+
{
1435
1435
+
name = "system.xml.readerwriter";
1436
1436
+
version = "4.3.0";
1437
1437
+
src = fetchurl {
1438
1438
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg";
1439
1439
+
sha256 = "1dsj4s5jwjqix52sizyncvrv5p1h9cdnkh5c4a6407s3gkkh4gzw";
1440
1440
+
};
1441
1441
+
}
1442
1442
+
{
1443
1443
+
name = "system.xml.xdocument";
1444
1444
+
version = "4.3.0";
1445
1445
+
src = fetchurl {
1446
1446
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg";
1447
1447
+
sha256 = "14j57hlnmba6rwjwkxx8yp7rk5zf2dzq5j9f22j84jr0xxf00j2f";
1448
1448
+
};
1449
1449
+
}
1450
1450
+
{
1451
1451
+
name = "system.xml.xmldocument";
1452
1452
+
version = "4.0.1";
1453
1453
+
src = fetchurl {
1454
1454
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg";
1455
1455
+
sha256 = "1x2iz1l482876vjr11vsrl895n1bbaflxbj239dpf5a48p06gq7y";
1456
1456
+
};
1457
1457
+
}
1458
1458
+
{
1459
1459
+
name = "system.xml.xmlserializer";
1460
1460
+
version = "4.0.11";
1461
1461
+
src = fetchurl {
1462
1462
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg";
1463
1463
+
sha256 = "0987zp4nskf0dbsl3h4s5m1ianjcc398zmp2b98j4834c45jh0bm";
1464
1464
+
};
1465
1465
+
}
1466
1466
+
{
1467
1467
+
name = "system.xml.xpath";
1468
1468
+
version = "4.3.0";
1469
1469
+
src = fetchurl {
1470
1470
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg";
1471
1471
+
sha256 = "0hvn82chjynkixvvk9dy9djqvb0hlkbc2hy00gy27vjhd8i4iqkx";
1472
1472
+
};
1473
1473
+
}
1474
1474
+
{
1475
1475
+
name = "vswhere";
1476
1476
+
version = "2.6.7";
1477
1477
+
src = fetchurl {
1478
1478
+
url = "https://api.nuget.org/v3-flatcontainer/vswhere/2.6.7/vswhere.2.6.7.nupkg";
1479
1479
+
sha256 = "0h4k5i96p7633zzf4xsv7615f9x72rr5qr7b9934ri2y6gshfcwk";
1480
1480
+
};
1481
1481
+
}
1482
1482
+
{
1483
1483
+
name = "xlifftasks";
1484
1484
+
version = "1.0.0-beta.20206.1";
1485
1485
+
src = fetchurl {
1486
1486
+
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/xlifftasks/1.0.0-beta.20206.1/xlifftasks.1.0.0-beta.20206.1.nupkg";
1487
1487
+
sha256 = "0xsfzws7rn9sfk4mgkbil21m8d3k3kccfk5f4g6lzvc1vk0pa26j";
1488
1488
+
};
1489
1489
+
}
1490
1490
+
{
1491
1491
+
name = "xunit";
1492
1492
+
version = "2.4.1";
1493
1493
+
src = fetchurl {
1494
1494
+
url = "https://api.nuget.org/v3-flatcontainer/xunit/2.4.1/xunit.2.4.1.nupkg";
1495
1495
+
sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20";
1496
1496
+
};
1497
1497
+
}
1498
1498
+
{
1499
1499
+
name = "xunit.abstractions";
1500
1500
+
version = "2.0.3";
1501
1501
+
src = fetchurl {
1502
1502
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg";
1503
1503
+
sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh";
1504
1504
+
};
1505
1505
+
}
1506
1506
+
{
1507
1507
+
name = "xunit.analyzers";
1508
1508
+
version = "0.10.0";
1509
1509
+
src = fetchurl {
1510
1510
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.analyzers/0.10.0/xunit.analyzers.0.10.0.nupkg";
1511
1511
+
sha256 = "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j";
1512
1512
+
};
1513
1513
+
}
1514
1514
+
{
1515
1515
+
name = "xunit.assert";
1516
1516
+
version = "2.4.1";
1517
1517
+
src = fetchurl {
1518
1518
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.assert/2.4.1/xunit.assert.2.4.1.nupkg";
1519
1519
+
sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6";
1520
1520
+
};
1521
1521
+
}
1522
1522
+
{
1523
1523
+
name = "xunit.core";
1524
1524
+
version = "2.4.1";
1525
1525
+
src = fetchurl {
1526
1526
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.core/2.4.1/xunit.core.2.4.1.nupkg";
1527
1527
+
sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a";
1528
1528
+
};
1529
1529
+
}
1530
1530
+
{
1531
1531
+
name = "xunit.extensibility.core";
1532
1532
+
version = "2.4.1";
1533
1533
+
src = fetchurl {
1534
1534
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.core/2.4.1/xunit.extensibility.core.2.4.1.nupkg";
1535
1535
+
sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050";
1536
1536
+
};
1537
1537
+
}
1538
1538
+
{
1539
1539
+
name = "xunit.extensibility.execution";
1540
1540
+
version = "2.4.1";
1541
1541
+
src = fetchurl {
1542
1542
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.execution/2.4.1/xunit.extensibility.execution.2.4.1.nupkg";
1543
1543
+
sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia";
1544
1544
+
};
1545
1545
+
}
1546
1546
+
{
1547
1547
+
name = "xunit.runner.console";
1548
1548
+
version = "2.4.1";
1549
1549
+
src = fetchurl {
1550
1550
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.console/2.4.1/xunit.runner.console.2.4.1.nupkg";
1551
1551
+
sha256 = "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13";
1552
1552
+
};
1553
1553
+
}
1554
1554
+
{
1555
1555
+
name = "xunit.runner.visualstudio";
1556
1556
+
version = "2.4.1";
1557
1557
+
src = fetchurl {
1558
1558
+
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.visualstudio/2.4.1/xunit.runner.visualstudio.2.4.1.nupkg";
1559
1559
+
sha256 = "0fln5pk18z98gp0zfshy1p9h6r9wc55nyqhap34k89yran646vhn";
1560
1560
+
};
1561
1561
+
}
1562
1562
+
]
-1326
pkgs/development/tools/build-managers/msbuild/nuget.nix
···
1
1
-
{ fetchurl }: [
2
2
-
(fetchurl {
3
3
-
url = "https://api.nuget.org/v3-flatcontainer/largeaddressaware/1.0.3/largeaddressaware.1.0.3.nupkg";
4
4
-
sha256 = "1ppss9bgj0hf5s8307bnm2a4qm10mrymp0v12m28a5q81zjz0fr5";
5
5
-
})
6
6
-
(fetchurl {
7
7
-
url = "https://api.nuget.org/v3-flatcontainer/microbuild.core/0.2.0/microbuild.core.0.2.0.nupkg";
8
8
-
sha256 = "0q4s45jskbyxfx4ay6znnvv94zma2wd85b8rwmwszd2nb0xl3194";
9
9
-
})
10
10
-
(fetchurl {
11
11
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/14.3.0/microsoft.build.14.3.0.nupkg";
12
12
-
sha256 = "1zamn3p8xxi0wsjlpln0y71ncb977f3fp08mvaz4wmbmi76nr0rz";
13
13
-
})
14
14
-
(fetchurl {
15
15
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.centralpackageversions/2.0.1/microsoft.build.centralpackageversions.2.0.1.nupkg";
16
16
-
sha256 = "17cjiaj2b98q8s89168g42jb8rhwm6062jcbv57rbkdiiwdsn55k";
17
17
-
})
18
18
-
(fetchurl {
19
19
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/14.3.0/microsoft.build.framework.14.3.0.nupkg";
20
20
-
sha256 = "0r7y1i7dbr3pb53fdrh268hyi627w85nzv2iblwyg8dzkfxraafd";
21
21
-
})
22
22
-
(fetchurl {
23
23
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/15.5.180/microsoft.build.framework.15.5.180.nupkg";
24
24
-
sha256 = "064y3a711ikx9pm9d2wyms4i3k4f9hfvn3vymhwygg7yv7gcj92z";
25
25
-
})
26
26
-
(fetchurl {
27
27
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.git/1.0.0-beta2-19367-01/microsoft.build.tasks.git.1.0.0-beta2-19367-01.nupkg";
28
28
-
sha256 = "1f6lqp86ybdgf0clmszpbqhhddynky7xl43fawvgnvz0bb2xw73j";
29
29
-
})
30
30
-
(fetchurl {
31
31
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/14.3.0/microsoft.build.utilities.core.14.3.0.nupkg";
32
32
-
sha256 = "0351nsnx12nzkss6vaqwwh7d7car7hrgyh0vyd4bl83c4x3ls1kb";
33
33
-
})
34
34
-
(fetchurl {
35
35
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/15.5.180/microsoft.build.utilities.core.15.5.180.nupkg";
36
36
-
sha256 = "0c4bjhaqgc98bchln8p5d2p1vyn8qrha2b8gpn2l7bnznbcrd630";
37
37
-
})
38
38
-
(fetchurl {
39
39
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.codecoverage/15.9.0/microsoft.codecoverage.15.9.0.nupkg";
40
40
-
sha256 = "10v5xrdilnm362g9545qxvlrbwc9vn65jhpb1i0jlhyqsj6bfwzg";
41
41
-
})
42
42
-
(fetchurl {
43
43
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.3.0/microsoft.csharp.4.3.0.nupkg";
44
44
-
sha256 = "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb";
45
45
-
})
46
46
-
(fetchurl {
47
47
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.platformabstractions/1.0.3/microsoft.dotnet.platformabstractions.1.0.3.nupkg";
48
48
-
sha256 = "1nayc88w80jrmnf3mkq0fk2bjhpgnk59m9yl40d9qfj06bzvckxl";
49
49
-
})
50
50
-
(fetchurl {
51
51
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.platformabstractions/2.1.0/microsoft.dotnet.platformabstractions.2.1.0.nupkg";
52
52
-
sha256 = "1qydvyyinj3b5mraazjal3n2k7jqhn05b6n1a2f3qjkqkxi63dmy";
53
53
-
})
54
54
-
(fetchurl {
55
55
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/1.0.3/microsoft.extensions.dependencymodel.1.0.3.nupkg";
56
56
-
sha256 = "1vclzbn8aq3wnvib34kr8g86gi37r6hn1ax9nc1sllid3h026irl";
57
57
-
})
58
58
-
(fetchurl {
59
59
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/2.1.0/microsoft.extensions.dependencymodel.2.1.0.nupkg";
60
60
-
sha256 = "0dl4qhjgifm6v3jsfzvzkvddyic77ggp9fq49ah661v45gk6ilgd";
61
61
-
})
62
62
-
(fetchurl {
63
63
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnetapphost/2.1.0/microsoft.netcore.dotnetapphost.2.1.0.nupkg";
64
64
-
sha256 = "10hnhkix2av0c7djp2q88pw407m8gk3im4r06x762a3cs6f2jprd";
65
65
-
})
66
66
-
(fetchurl {
67
67
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostpolicy/2.1.0/microsoft.netcore.dotnethostpolicy.2.1.0.nupkg";
68
68
-
sha256 = "1xh8ij7zyfkrk20rgpwqs00mxdy2qiwr7qar2xk397zk2bh2d90n";
69
69
-
})
70
70
-
(fetchurl {
71
71
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostresolver/2.1.0/microsoft.netcore.dotnethostresolver.2.1.0.nupkg";
72
72
-
sha256 = "1384k3cg4sjcn3hyalcm43fhmlfj5pnywpzd9zpgc4jsr2c16x76";
73
73
-
})
74
74
-
(fetchurl {
75
75
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg";
76
76
-
sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr";
77
77
-
})
78
78
-
(fetchurl {
79
79
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg";
80
80
-
sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm";
81
81
-
})
82
82
-
(fetchurl {
83
83
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg";
84
84
-
sha256 = "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj";
85
85
-
})
86
86
-
(fetchurl {
87
87
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.0/microsoft.netcore.platforms.2.1.0.nupkg";
88
88
-
sha256 = "0nmdnkmwyxj8cp746hs9an57zspqlmqdm55b00i7yk8a22s6akxz";
89
89
-
})
90
90
-
(fetchurl {
91
91
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg";
92
92
-
sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p";
93
93
-
})
94
94
-
(fetchurl {
95
95
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/15.9.0/microsoft.net.test.sdk.15.9.0.nupkg";
96
96
-
sha256 = "0g7wjgiigs4v8qa32g9ysqgx8bx55dzmbxfkc4ic95mpd1vkjqxw";
97
97
-
})
98
98
-
(fetchurl {
99
99
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.common/1.0.0-beta2-19367-01/microsoft.sourcelink.common.1.0.0-beta2-19367-01.nupkg";
100
100
-
sha256 = "1p4zyz0jmq53k2zlaqq6qhy0shyjz2i9wfllw9kg8hsm1rwig1p6";
101
101
-
})
102
102
-
(fetchurl {
103
103
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.github/1.0.0-beta2-19367-01/microsoft.sourcelink.github.1.0.0-beta2-19367-01.nupkg";
104
104
-
sha256 = "0c4l82jnc0prkwcjawhpqx1i5439ryj53gbphqlv3snq7alv3vdd";
105
105
-
})
106
106
-
(fetchurl {
107
107
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.vsts.git/1.0.0-beta2-19367-01/microsoft.sourcelink.vsts.git.1.0.0-beta2-19367-01.nupkg";
108
108
-
sha256 = "0si4xx30c9s8sfhlq3s5ll9grli2d36ic5bcp7pms7yls0cg0ik4";
109
109
-
})
110
110
-
(fetchurl {
111
111
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/15.9.0/microsoft.testplatform.objectmodel.15.9.0.nupkg";
112
112
-
sha256 = "0xj09b2pmf573dl0zhfgbs3qf2073yipnx55spvf7h2qvyqvf7db";
113
113
-
})
114
114
-
(fetchurl {
115
115
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.testhost/15.9.0/microsoft.testplatform.testhost.15.9.0.nupkg";
116
116
-
sha256 = "1srhq00bs44yv56k2zyxglkm2b7fs4fhvfr1clapaiz09rnqspl3";
117
117
-
})
118
118
-
(fetchurl {
119
119
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.sdk.embedinteroptypes/15.0.15/microsoft.visualstudio.sdk.embedinteroptypes.15.0.15.nupkg";
120
120
-
sha256 = "0chr3slzzcanwcyd9isx4gichqzmfh4zd3h83piw0r4xsww1wmpd";
121
121
-
})
122
122
-
(fetchurl {
123
123
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.setup.configuration.interop/1.16.30/microsoft.visualstudio.setup.configuration.interop.1.16.30.nupkg";
124
124
-
sha256 = "14022lx03vdcqlvbbdmbsxg5pqfx1rfq2jywxlyaz9v68cvsb0g4";
125
125
-
})
126
126
-
(fetchurl {
127
127
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg";
128
128
-
sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq";
129
129
-
})
130
130
-
(fetchurl {
131
131
-
url = "https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg";
132
132
-
sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k";
133
133
-
})
134
134
-
(fetchurl {
135
135
-
url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/1.6.0/netstandard.library.1.6.0.nupkg";
136
136
-
sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k";
137
137
-
})
138
138
-
(fetchurl {
139
139
-
url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg";
140
140
-
sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8";
141
141
-
})
142
142
-
(fetchurl {
143
143
-
url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg";
144
144
-
sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y";
145
145
-
})
146
146
-
(fetchurl {
147
147
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg";
148
148
-
sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf";
149
149
-
})
150
150
-
(fetchurl {
151
151
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg";
152
152
-
sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4";
153
153
-
})
154
154
-
(fetchurl {
155
155
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg";
156
156
-
sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk";
157
157
-
})
158
158
-
(fetchurl {
159
159
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
160
160
-
sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97";
161
161
-
})
162
162
-
(fetchurl {
163
163
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
164
164
-
sha256 = "0zy5r25jppz48i2bkg8b9lfig24xixg6nm3xyr1379zdnqnpm8f6";
165
165
-
})
166
166
-
(fetchurl {
167
167
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
168
168
-
sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5";
169
169
-
})
170
170
-
(fetchurl {
171
171
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
172
172
-
sha256 = "1x0g58pbpjrmj2x2qw17rdwwnrcl0wvim2hdwz48lixvwvp22n9c";
173
173
-
})
174
174
-
(fetchurl {
175
175
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.app/2.1.0/runtime.win-x64.microsoft.netcore.app.2.1.0.nupkg";
176
176
-
sha256 = "11447rh8rbazksj5bp3gvvdl33glq37ajc1ds18xrr69b1shxzrl";
177
177
-
})
178
178
-
(fetchurl {
179
179
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnetapphost/2.1.0/runtime.win-x64.microsoft.netcore.dotnetapphost.2.1.0.nupkg";
180
180
-
sha256 = "0g6kdwycs7zxyzks98az54zzs5s7cms5x0zklxhl93ldr847nw07";
181
181
-
})
182
182
-
(fetchurl {
183
183
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnethostpolicy/2.1.0/runtime.win-x64.microsoft.netcore.dotnethostpolicy.2.1.0.nupkg";
184
184
-
sha256 = "14qr09a9gq3x3licvqfwsbh3m4kdp3jh47xgajhhy6ycs66rgpba";
185
185
-
})
186
186
-
(fetchurl {
187
187
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnethostresolver/2.1.0/runtime.win-x64.microsoft.netcore.dotnethostresolver.2.1.0.nupkg";
188
188
-
sha256 = "1x14nq85ciaqrj32k5cnb7f8dj3xw2wfp1idnyrc9cks3xkpmqd6";
189
189
-
})
190
190
-
(fetchurl {
191
191
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.app/2.1.0/runtime.win-x86.microsoft.netcore.app.2.1.0.nupkg";
192
192
-
sha256 = "0dqdh0k30nqdrgz24aldvghhcpw8fj10gdwpgy4nzn7gsbzni6x4";
193
193
-
})
194
194
-
(fetchurl {
195
195
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnetapphost/2.1.0/runtime.win-x86.microsoft.netcore.dotnetapphost.2.1.0.nupkg";
196
196
-
sha256 = "1qrx237qb5lp2zm2c8hnj1k9jzhcf718davalsaxyvipbs1bkhnx";
197
197
-
})
198
198
-
(fetchurl {
199
199
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnethostpolicy/2.1.0/runtime.win-x86.microsoft.netcore.dotnethostpolicy.2.1.0.nupkg";
200
200
-
sha256 = "1cf841qmnfgi83k6pdqsdgr9a62isrilshmli7ihzpfn44vfqfrm";
201
201
-
})
202
202
-
(fetchurl {
203
203
-
url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnethostresolver/2.1.0/runtime.win-x86.microsoft.netcore.dotnethostresolver.2.1.0.nupkg";
204
204
-
sha256 = "1bwvncpywns45b2drks6i1liprzjj6fcwg2wy3x9mvphi9njsb0l";
205
205
-
})
206
206
-
(fetchurl {
207
207
-
url = "https://api.nuget.org/v3-flatcontainer/shouldly/3.0.0/shouldly.3.0.0.nupkg";
208
208
-
sha256 = "1hg28w898kl84rx57sclb2z9b76v5hxlwxig1xnb6fr81aahzlw3";
209
209
-
})
210
210
-
(fetchurl {
211
211
-
url = "https://api.nuget.org/v3-flatcontainer/sourcelink.create.commandline/2.1.2/sourcelink.create.commandline.2.1.2.nupkg";
212
212
-
sha256 = "1lbgia8fsinmds4fy98hzfsrvh3fdccs39rs816mrdpdappw1n1z";
213
213
-
})
214
214
-
(fetchurl {
215
215
-
url = "https://api.nuget.org/v3-flatcontainer/system.codedom/4.4.0/system.codedom.4.4.0.nupkg";
216
216
-
sha256 = "1zgbafm5p380r50ap5iddp11kzhr9khrf2pnai6k593wjar74p1g";
217
217
-
})
218
218
-
(fetchurl {
219
219
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11/system.collections.4.0.11.nupkg";
220
220
-
sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6";
221
221
-
})
222
222
-
(fetchurl {
223
223
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections/4.3.0/system.collections.4.3.0.nupkg";
224
224
-
sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9";
225
225
-
})
226
226
-
(fetchurl {
227
227
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg";
228
228
-
sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc";
229
229
-
})
230
230
-
(fetchurl {
231
231
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg";
232
232
-
sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m";
233
233
-
})
234
234
-
(fetchurl {
235
235
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.3.1/system.collections.immutable.1.3.1.nupkg";
236
236
-
sha256 = "17615br2x5riyx8ivf1dcqwj6q3ipq1bi5hqhw54yfyxmx38ddva";
237
237
-
})
238
238
-
(fetchurl {
239
239
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg";
240
240
-
sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d";
241
241
-
})
242
242
-
(fetchurl {
243
243
-
url = "https://api.nuget.org/v3-flatcontainer/system.collections.specialized/4.0.1/system.collections.specialized.4.0.1.nupkg";
244
244
-
sha256 = "1wbv7y686p5x169rnaim7sln67ivmv6r57falrnx8aap9y33mam9";
245
245
-
})
246
246
-
(fetchurl {
247
247
-
url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1/system.componentmodel.4.0.1.nupkg";
248
248
-
sha256 = "0v4qpmqlzyfad2kswxxj2frnaqqhz9201c3yn8fmmarx5vlzg52z";
249
249
-
})
250
250
-
(fetchurl {
251
251
-
url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.eventbasedasync/4.0.11/system.componentmodel.eventbasedasync.4.0.11.nupkg";
252
252
-
sha256 = "07r5i7xwban347nsfw28hhjwpr78ywksjyhywvhj1yr0s7sr00wh";
253
253
-
})
254
254
-
(fetchurl {
255
255
-
url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.1.0/system.componentmodel.primitives.4.1.0.nupkg";
256
256
-
sha256 = "0wb5mnaag0w4fnyc40x19j8v2vshxp266razw64bcqfyj1whb1q0";
257
257
-
})
258
258
-
(fetchurl {
259
259
-
url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.1.0/system.componentmodel.typeconverter.4.1.0.nupkg";
260
260
-
sha256 = "178cva9p1cs043h5n2fry5xkzr3wc9n0hwbxa8m3ymld9m6wcv0y";
261
261
-
})
262
262
-
(fetchurl {
263
263
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg";
264
264
-
sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz";
265
265
-
})
266
266
-
(fetchurl {
267
267
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg";
268
268
-
sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq";
269
269
-
})
270
270
-
(fetchurl {
271
271
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg";
272
272
-
sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s";
273
273
-
})
274
274
-
(fetchurl {
275
275
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg";
276
276
-
sha256 = "0g4prsbkygq8m21naqmcp70f24a1ksyix3dihb1r1f71lpi3cfj7";
277
277
-
})
278
278
-
(fetchurl {
279
279
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg";
280
280
-
sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x";
281
281
-
})
282
282
-
(fetchurl {
283
283
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg";
284
284
-
sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1";
285
285
-
})
286
286
-
(fetchurl {
287
287
-
url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg";
288
288
-
sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4";
289
289
-
})
290
290
-
(fetchurl {
291
291
-
url = "https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg";
292
292
-
sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9";
293
293
-
})
294
294
-
(fetchurl {
295
295
-
url = "https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg";
296
296
-
sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d";
297
297
-
})
298
298
-
(fetchurl {
299
299
-
url = "https://api.nuget.org/v3-flatcontainer/system.globalization/4.3.0/system.globalization.4.3.0.nupkg";
300
300
-
sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki";
301
301
-
})
302
302
-
(fetchurl {
303
303
-
url = "https://api.nuget.org/v3-flatcontainer/system.globalization.calendars/4.0.1/system.globalization.calendars.4.0.1.nupkg";
304
304
-
sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh";
305
305
-
})
306
306
-
(fetchurl {
307
307
-
url = "https://api.nuget.org/v3-flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg";
308
308
-
sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq";
309
309
-
})
310
310
-
(fetchurl {
311
311
-
url = "https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg";
312
312
-
sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls";
313
313
-
})
314
314
-
(fetchurl {
315
315
-
url = "https://api.nuget.org/v3-flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg";
316
316
-
sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp";
317
317
-
})
318
318
-
(fetchurl {
319
319
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.compression/4.1.0/system.io.compression.4.1.0.nupkg";
320
320
-
sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji";
321
321
-
})
322
322
-
(fetchurl {
323
323
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg";
324
324
-
sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz";
325
325
-
})
326
326
-
(fetchurl {
327
327
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg";
328
328
-
sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1";
329
329
-
})
330
330
-
(fetchurl {
331
331
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg";
332
332
-
sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw";
333
333
-
})
334
334
-
(fetchurl {
335
335
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem.driveinfo/4.3.0/system.io.filesystem.driveinfo.4.3.0.nupkg";
336
336
-
sha256 = "0j67khc75lwdf7d5i3z41cks7zhac4zdccgvk2xmq6wm1l08xnlh";
337
337
-
})
338
338
-
(fetchurl {
339
339
-
url = "https://api.nuget.org/v3-flatcontainer/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg";
340
340
-
sha256 = "1ygv16gzpi9cnlzcqwijpv7055qc50ynwg3vw29vj1q3iha3h06r";
341
341
-
})
342
342
-
(fetchurl {
343
343
-
url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg";
344
344
-
sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5";
345
345
-
})
346
346
-
(fetchurl {
347
347
-
url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg";
348
348
-
sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7";
349
349
-
})
350
350
-
(fetchurl {
351
351
-
url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg";
352
352
-
sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg";
353
353
-
})
354
354
-
(fetchurl {
355
355
-
url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg";
356
356
-
sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv";
357
357
-
})
358
358
-
(fetchurl {
359
359
-
url = "https://api.nuget.org/v3-flatcontainer/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg";
360
360
-
sha256 = "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad";
361
361
-
})
362
362
-
(fetchurl {
363
363
-
url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.4/system.net.http.4.3.4.nupkg";
364
364
-
sha256 = "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl";
365
365
-
})
366
366
-
(fetchurl {
367
367
-
url = "https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.11/system.net.primitives.4.0.11.nupkg";
368
368
-
sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r";
369
369
-
})
370
370
-
(fetchurl {
371
371
-
url = "https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg";
372
372
-
sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii";
373
373
-
})
374
374
-
(fetchurl {
375
375
-
url = "https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg";
376
376
-
sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba";
377
377
-
})
378
378
-
(fetchurl {
379
379
-
url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg";
380
380
-
sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj";
381
381
-
})
382
382
-
(fetchurl {
383
383
-
url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg";
384
384
-
sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2";
385
385
-
})
386
386
-
(fetchurl {
387
387
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg";
388
388
-
sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp";
389
389
-
})
390
390
-
(fetchurl {
391
391
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg";
392
392
-
sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74";
393
393
-
})
394
394
-
(fetchurl {
395
395
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg";
396
396
-
sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0";
397
397
-
})
398
398
-
(fetchurl {
399
399
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg";
400
400
-
sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr";
401
401
-
})
402
402
-
(fetchurl {
403
403
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg";
404
404
-
sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c";
405
405
-
})
406
406
-
(fetchurl {
407
407
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg";
408
408
-
sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn";
409
409
-
})
410
410
-
(fetchurl {
411
411
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg";
412
412
-
sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq";
413
413
-
})
414
414
-
(fetchurl {
415
415
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.3.0/system.reflection.metadata.1.3.0.nupkg";
416
416
-
sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b";
417
417
-
})
418
418
-
(fetchurl {
419
419
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.4.2/system.reflection.metadata.1.4.2.nupkg";
420
420
-
sha256 = "08b7b43vczlliv8k7q43jinjfrxwpljsglw7sxmc6sd7d54pd1vi";
421
421
-
})
422
422
-
(fetchurl {
423
423
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg";
424
424
-
sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28";
425
425
-
})
426
426
-
(fetchurl {
427
427
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg";
428
428
-
sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276";
429
429
-
})
430
430
-
(fetchurl {
431
431
-
url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg";
432
432
-
sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1";
433
433
-
})
434
434
-
(fetchurl {
435
435
-
url = "https://api.nuget.org/v3-flatcontainer/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg";
436
436
-
sha256 = "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril";
437
437
-
})
438
438
-
(fetchurl {
439
439
-
url = "https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg";
440
440
-
sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi";
441
441
-
})
442
442
-
(fetchurl {
443
443
-
url = "https://api.nuget.org/v3-flatcontainer/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg";
444
444
-
sha256 = "07hp218kjdcvpl27djspnixgnacbp9apma61zz3wsca9fx5g3lmv";
445
445
-
})
446
446
-
(fetchurl {
447
447
-
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg";
448
448
-
sha256 = "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi";
449
449
-
})
450
450
-
(fetchurl {
451
451
-
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg";
452
452
-
sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z";
453
453
-
})
454
454
-
(fetchurl {
455
455
-
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg";
456
456
-
sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60";
457
457
-
})
458
458
-
(fetchurl {
459
459
-
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg";
460
460
-
sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8";
461
461
-
})
462
462
-
(fetchurl {
463
463
-
url = "https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg";
464
464
-
sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j";
465
465
-
})
466
466
-
(fetchurl {
467
467
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/4.3.0/system.security.accesscontrol.4.3.0.nupkg";
468
468
-
sha256 = "1gakrskmlmwhzmjc1c2mrwk0fml615rsk31dw0kbjnn9yqnnrjbi";
469
469
-
})
470
470
-
(fetchurl {
471
471
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.2.0/system.security.cryptography.algorithms.4.2.0.nupkg";
472
472
-
sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85";
473
473
-
})
474
474
-
(fetchurl {
475
475
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg";
476
476
-
sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml";
477
477
-
})
478
478
-
(fetchurl {
479
479
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.cng/4.2.0/system.security.cryptography.cng.4.2.0.nupkg";
480
480
-
sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc";
481
481
-
})
482
482
-
(fetchurl {
483
483
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg";
484
484
-
sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv";
485
485
-
})
486
486
-
(fetchurl {
487
487
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.0.0/system.security.cryptography.encoding.4.0.0.nupkg";
488
488
-
sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4";
489
489
-
})
490
490
-
(fetchurl {
491
491
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg";
492
492
-
sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32";
493
493
-
})
494
494
-
(fetchurl {
495
495
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.openssl/4.0.0/system.security.cryptography.openssl.4.0.0.nupkg";
496
496
-
sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q";
497
497
-
})
498
498
-
(fetchurl {
499
499
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg";
500
500
-
sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc";
501
501
-
})
502
502
-
(fetchurl {
503
503
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg";
504
504
-
sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby";
505
505
-
})
506
506
-
(fetchurl {
507
507
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.3.0/system.security.cryptography.protecteddata.4.3.0.nupkg";
508
508
-
sha256 = "1kg264xmqabyz8gfg8ymp6qp6aw43vawfp0znf0909d7b5jd3dq9";
509
509
-
})
510
510
-
(fetchurl {
511
511
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.1.0/system.security.cryptography.x509certificates.4.1.0.nupkg";
512
512
-
sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh";
513
513
-
})
514
514
-
(fetchurl {
515
515
-
url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg";
516
516
-
sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h";
517
517
-
})
518
518
-
(fetchurl {
519
519
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg";
520
520
-
sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw";
521
521
-
})
522
522
-
(fetchurl {
523
523
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/4.3.0/system.text.encoding.codepages.4.3.0.nupkg";
524
524
-
sha256 = "0lgxg1gn7pg7j0f942pfdc9q7wamzxsgq3ng248ikdasxz0iadkv";
525
525
-
})
526
526
-
(fetchurl {
527
527
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg";
528
528
-
sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs";
529
529
-
})
530
530
-
(fetchurl {
531
531
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg";
532
532
-
sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy";
533
533
-
})
534
534
-
(fetchurl {
535
535
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg";
536
536
-
sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7";
537
537
-
})
538
538
-
(fetchurl {
539
539
-
url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg";
540
540
-
sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l";
541
541
-
})
542
542
-
(fetchurl {
543
543
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg";
544
544
-
sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls";
545
545
-
})
546
546
-
(fetchurl {
547
547
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading/4.3.0/system.threading.4.3.0.nupkg";
548
548
-
sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34";
549
549
-
})
550
550
-
(fetchurl {
551
551
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg";
552
552
-
sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5";
553
553
-
})
554
554
-
(fetchurl {
555
555
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.dataflow/4.5.24/system.threading.tasks.dataflow.4.5.24.nupkg";
556
556
-
sha256 = "0wahbfdb0jxx3hi04xggfms8wgf68wmvv68m2vfp8v2kiqr5mr2r";
557
557
-
})
558
558
-
(fetchurl {
559
559
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg";
560
560
-
sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr";
561
561
-
})
562
562
-
(fetchurl {
563
563
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg";
564
564
-
sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z";
565
565
-
})
566
566
-
(fetchurl {
567
567
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.4.3.0.nupkg";
568
568
-
sha256 = "1rr3qa4hxwyj531s4nb3bwrxnxxwz617i0n9gh6x7nr7dd3ayzgh";
569
569
-
})
570
570
-
(fetchurl {
571
571
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg";
572
572
-
sha256 = "0y2xiwdfcph7znm2ysxanrhbqqss6a3shi1z3c779pj2s523mjx4";
573
573
-
})
574
574
-
(fetchurl {
575
575
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.0.10/system.threading.threadpool.4.0.10.nupkg";
576
576
-
sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx";
577
577
-
})
578
578
-
(fetchurl {
579
579
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg";
580
580
-
sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6";
581
581
-
})
582
582
-
(fetchurl {
583
583
-
url = "https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg";
584
584
-
sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56";
585
585
-
})
586
586
-
(fetchurl {
587
587
-
url = "https://api.nuget.org/v3-flatcontainer/system.valuetuple/4.3.0/system.valuetuple.4.3.0.nupkg";
588
588
-
sha256 = "1227k7fxbxapq7dms4lvwwjdf3pr1jcsmhy2nzzhj6g6hs530hxn";
589
589
-
})
590
590
-
(fetchurl {
591
591
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg";
592
592
-
sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18";
593
593
-
})
594
594
-
(fetchurl {
595
595
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg";
596
596
-
sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd";
597
597
-
})
598
598
-
(fetchurl {
599
599
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg";
600
600
-
sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1";
601
601
-
})
602
602
-
(fetchurl {
603
603
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg";
604
604
-
sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi";
605
605
-
})
606
606
-
(fetchurl {
607
607
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath/4.0.1/system.xml.xpath.4.0.1.nupkg";
608
608
-
sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m";
609
609
-
})
610
610
-
(fetchurl {
611
611
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.4.3.0.nupkg";
612
612
-
sha256 = "1wxckyb7n1pi433xzz0qcwcbl1swpra64065mbwwi8dhdc4kiabn";
613
613
-
})
614
614
-
(fetchurl {
615
615
-
url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath.xmldocument/4.0.1/system.xml.xpath.xmldocument.4.0.1.nupkg";
616
616
-
sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc";
617
617
-
})
618
618
-
(fetchurl {
619
619
-
url = "https://api.nuget.org/v3-flatcontainer/vswhere/2.6.7/vswhere.2.6.7.nupkg";
620
620
-
sha256 = "0h4k5i96p7633zzf4xsv7615f9x72rr5qr7b9934ri2y6gshfcwk";
621
621
-
})
622
622
-
(fetchurl {
623
623
-
url = "https://api.nuget.org/v3-flatcontainer/xunit/2.4.1/xunit.2.4.1.nupkg";
624
624
-
sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20";
625
625
-
})
626
626
-
(fetchurl {
627
627
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg";
628
628
-
sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh";
629
629
-
})
630
630
-
(fetchurl {
631
631
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.analyzers/0.10.0/xunit.analyzers.0.10.0.nupkg";
632
632
-
sha256 = "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j";
633
633
-
})
634
634
-
(fetchurl {
635
635
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.assert/2.4.1/xunit.assert.2.4.1.nupkg";
636
636
-
sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6";
637
637
-
})
638
638
-
(fetchurl {
639
639
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.console/2.4.1/xunit.console.2.4.1.nupkg";
640
640
-
sha256 = "1anjrxjv8ssy9yyr3r6p51bsy8iy6wc5nb9k2771dc44n828vw03";
641
641
-
})
642
642
-
(fetchurl {
643
643
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.core/2.4.1/xunit.core.2.4.1.nupkg";
644
644
-
sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a";
645
645
-
})
646
646
-
(fetchurl {
647
647
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.core/2.4.1/xunit.extensibility.core.2.4.1.nupkg";
648
648
-
sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050";
649
649
-
})
650
650
-
(fetchurl {
651
651
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.execution/2.4.1/xunit.extensibility.execution.2.4.1.nupkg";
652
652
-
sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia";
653
653
-
})
654
654
-
(fetchurl {
655
655
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.console/2.4.1/xunit.runner.console.2.4.1.nupkg";
656
656
-
sha256 = "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13";
657
657
-
})
658
658
-
(fetchurl {
659
659
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.reporters/2.4.1/xunit.runner.reporters.2.4.1.nupkg";
660
660
-
sha256 = "1b44i5cacxcvvp9c7izzhq6mk4db46yhf4kfqxbhp34p7x8z4snp";
661
661
-
})
662
662
-
(fetchurl {
663
663
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.utility/2.4.1/xunit.runner.utility.2.4.1.nupkg";
664
664
-
sha256 = "0v0bpjiq07m5s7gnnwlq813zpnm693aaxjyqcnakhwkjy1zprlds";
665
665
-
})
666
666
-
(fetchurl {
667
667
-
url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.visualstudio/2.4.1/xunit.runner.visualstudio.2.4.1.nupkg";
668
668
-
sha256 = "0fln5pk18z98gp0zfshy1p9h6r9wc55nyqhap34k89yran646vhn";
669
669
-
})
670
670
-
(fetchurl {
671
671
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core.sentinel/1.0.0/microbuild.core.sentinel.1.0.0.nupkg";
672
672
-
sha256 = "035kqx5fkapql108n222lz8psvxk04mv3dy1qg3h08i4b8j3dy8i";
673
673
-
})
674
674
-
(fetchurl {
675
675
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg";
676
676
-
sha256 = "1brjgpkhv2v2aqvrhdwgsvn574bz5wd9hd3ydxv29x74yg7p1gqv";
677
677
-
})
678
678
-
(fetchurl {
679
679
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.diasymreader.pdb2pdb/1.1.0-beta1-62506-02/microsoft.diasymreader.pdb2pdb.1.1.0-beta1-62506-02.nupkg";
680
680
-
sha256 = "1dkhpmq5aw34nndvb4xc370866vf33x70zrjhgvnpwwspb6vb0zh";
681
681
-
})
682
682
-
(fetchurl {
683
683
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.arcade.sdk/1.0.0-beta.19372.10/microsoft.dotnet.arcade.sdk.1.0.0-beta.19372.10.nupkg";
684
684
-
sha256 = "1lii0yg4fbsma80mmvw2zwplc26abb46q6gkxwbsbkyszkw128hv";
685
685
-
})
686
686
-
(fetchurl {
687
687
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.build.tasks.visualstudio/1.0.0-beta.19372.10/microsoft.dotnet.build.tasks.visualstudio.1.0.0-beta.19372.10.nupkg";
688
688
-
sha256 = "0v8abpsrf3950wajfss8y3wldjmiid58218yhzgpl80ww2m9v0b4";
689
689
-
})
690
690
-
(fetchurl {
691
691
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.signtool/1.0.0-beta.19372.10/microsoft.dotnet.signtool.1.0.0-beta.19372.10.nupkg";
692
692
-
sha256 = "1f2im2lilw10zslfclxh49knr542jy7q09p009flxsgn68riy0j6";
693
693
-
})
694
694
-
(fetchurl {
695
695
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.compilers.toolset/3.3.0-beta2-19367-02/microsoft.net.compilers.toolset.3.3.0-beta2-19367-02.nupkg";
696
696
-
sha256 = "1v9lz2fmfprhql0klqa8iipiiz3wcflvlgr3a86pcjjk7x0y84sl";
697
697
-
})
698
698
-
(fetchurl {
699
699
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.app/2.1.0/microsoft.netcore.app.2.1.0.nupkg";
700
700
-
sha256 = "163giw7vcjhzn2z4jv9kmjh4x4i5larr112x6n6yx9r0sxxzfgyy";
701
701
-
})
702
702
-
(fetchurl {
703
703
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg";
704
704
-
sha256 = "0w9jw8gnpmc6z09s4l9ll53js6d4n2ylg2p2x6916yb11vxr4z27";
705
705
-
})
706
706
-
(fetchurl {
707
707
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg";
708
708
-
sha256 = "1gn085ddzn8psqfhmwcjzq2zrmb5gca2liap79a43wyw4gs8ip78";
709
709
-
})
710
710
-
(fetchurl {
711
711
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg";
712
712
-
sha256 = "0idlsfwd9sn4p9jr1dqi14b8n2ly0k4dnjpvh8jfhxgnzzl98z5k";
713
713
-
})
714
714
-
(fetchurl {
715
715
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/2.1.0/microsoft.netcore.targets.2.1.0.nupkg";
716
716
-
sha256 = "0sv2pj8s8fv1pjl25fmhbw85h6hmh0ma0y2gd7r30q9ridhgkr2a";
717
717
-
})
718
718
-
(fetchurl {
719
719
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.symboluploader.build.task/1.0.0-beta-64131-01/microsoft.symboluploader.build.task.1.0.0-beta-64131-01.nupkg";
720
720
-
sha256 = "163rk3jq0gx242mfr49lw40bxd881l0hipbygf4y1si7a5nhdnkd";
721
721
-
})
722
722
-
(fetchurl {
723
723
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg";
724
724
-
sha256 = "1pviskapkc6qm108r0q2x15vkgyqsczf9xpmrlm42q68ainc9ai3";
725
725
-
})
726
726
-
(fetchurl {
727
727
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.registry/4.3.0/microsoft.win32.registry.4.3.0.nupkg";
728
728
-
sha256 = "1gpfc8nzsbpr71k02cqilcl22ygryzsfcyxhdkjlqm8xqrkp2vyp";
729
729
-
})
730
730
-
(fetchurl {
731
731
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg";
732
732
-
sha256 = "1qayanmqh3xiw0bjwm825j1n6nvbhc6yqkdpaawpyd0l71d5qh13";
733
733
-
})
734
734
-
(fetchurl {
735
735
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
736
736
-
sha256 = "10a3jqkh1h23qsn7pjlji61d7dph7qy8c6ssfjqmlgydm4rnin64";
737
737
-
})
738
738
-
(fetchurl {
739
739
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
740
740
-
sha256 = "08mz7l384s2lk7j0xndnl5ywqfr9ziv5bw5pdqhphd4pjpf7gdff";
741
741
-
})
742
742
-
(fetchurl {
743
743
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
744
744
-
sha256 = "1md38ys5h8srinnq9qxz47c9i27x7pv84avdi3rbq68hfkcslx93";
745
745
-
})
746
746
-
(fetchurl {
747
747
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
748
748
-
sha256 = "0ylpfg4fq1ww95k0h732wy9wiacic5j8gnwrlb9brzr00aqxgfgz";
749
749
-
})
750
750
-
(fetchurl {
751
751
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
752
752
-
sha256 = "0cgvqxccg4lkxiyvw3jrn71pbybbbcd3i8v6v4przgrr7f7k6nfj";
753
753
-
})
754
754
-
(fetchurl {
755
755
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
756
756
-
sha256 = "1wzb5l22giw2jaqpb120n234qj8fd3f4mmhj5y40a787clinpkmc";
757
757
-
})
758
758
-
(fetchurl {
759
759
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg";
760
760
-
sha256 = "02gnfm33gf163kybkahfza8q10jp890hiczcnbg2aasf1n0jq857";
761
761
-
})
762
762
-
(fetchurl {
763
763
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.1.0/runtime.native.system.io.compression.4.1.0.nupkg";
764
764
-
sha256 = "0d46l61lbyy4gp4ny7jzvba2qd7ld9ybz4g77qbmlssx55wky5x5";
765
765
-
})
766
766
-
(fetchurl {
767
767
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg";
768
768
-
sha256 = "05370qi83pxfyn3whzkjjwb4q80vlr3mbz0dfa0hc0cbl5jx4y20";
769
769
-
})
770
770
-
(fetchurl {
771
771
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.net.http/4.0.1/runtime.native.system.net.http.4.0.1.nupkg";
772
772
-
sha256 = "06la17kis5xmny9nksqv3ls5zi9c006s7drhp52nkn52zgsa8wpx";
773
773
-
})
774
774
-
(fetchurl {
775
775
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg";
776
776
-
sha256 = "1sp68k261viqhp5025r2r6yznmpqy3gajxn21sn85zhzg823ar4h";
777
777
-
})
778
778
-
(fetchurl {
779
779
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography/4.0.0/runtime.native.system.security.cryptography.4.0.0.nupkg";
780
780
-
sha256 = "1mxal16ml65wdc251lhlqix8m92nmzwhqd9b2zpjmjbfynqd8gz6";
781
781
-
})
782
782
-
(fetchurl {
783
783
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg";
784
784
-
sha256 = "0rsp0hqivnhx25739rl2v9r4hsqgyyrbgb18zhl3rv4b2ciybpd7";
785
785
-
})
786
786
-
(fetchurl {
787
787
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
788
788
-
sha256 = "0pwl43xa39lnfbl7y26m42j07i28bmz5ziwxsz0bwfpkqznkywvq";
789
789
-
})
790
790
-
(fetchurl {
791
791
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
792
792
-
sha256 = "1pr8ji41rsifx6yh89xg1yw45g5snw96xxqw0g3q48rbdg5j79iw";
793
793
-
})
794
794
-
(fetchurl {
795
795
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
796
796
-
sha256 = "056yjf7r5lfyyzdfjapf2jgzrxla2rjh7z62hysyjn64jx4a3pkn";
797
797
-
})
798
798
-
(fetchurl {
799
799
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
800
800
-
sha256 = "1r8hllb6fdb4adij7b7ld32hf5r5jxyqh4pacrvfgjckmyx8js8c";
801
801
-
})
802
802
-
(fetchurl {
803
803
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
804
804
-
sha256 = "1afzdbzwzbcj1b6lywm90rwwbwy2mi0chrdhp4f9jh2hps653k68";
805
805
-
})
806
806
-
(fetchurl {
807
807
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg";
808
808
-
sha256 = "183fc5kzsz8pf80c3jvyb3ixr3wxid6d0zb7wsnhg8cjdssmis33";
809
809
-
})
810
810
-
(fetchurl {
811
811
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
812
812
-
sha256 = "0ck0l1d5558rxh5rh1bynar18f1ah7789pbgizkls5wf9cxfbsk6";
813
813
-
})
814
814
-
(fetchurl {
815
815
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
816
816
-
sha256 = "0j2f2v1nm7sys6qpljhp4s18zz3hblymjl60yrccqfac7yr9hxrq";
817
817
-
})
818
818
-
(fetchurl {
819
819
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
820
820
-
sha256 = "0iddbp46nz6f76p60fdwjq70lkc8b7i87js8sb0s6dq2fqbv0dl5";
821
821
-
})
822
822
-
(fetchurl {
823
823
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
824
824
-
sha256 = "1n0p46c8yix5kx37cgnqirl3r2rhkx3lz250gqv9xq1blvg1vvkq";
825
825
-
})
826
826
-
(fetchurl {
827
827
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
828
828
-
sha256 = "0x7vzghvix9xjxr7ilak8935q84djpjdwhxqi655abmcdrz9lbcy";
829
829
-
})
830
830
-
(fetchurl {
831
831
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
832
832
-
sha256 = "07igi3l9qza05cqkpxf9mywm2j3c8g5fy0yw0wh9h33inp2h0iv9";
833
833
-
})
834
834
-
(fetchurl {
835
835
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/sn/1.0.0/sn.1.0.0.nupkg";
836
836
-
sha256 = "1012fcdc6vq2355v86h434s6p2nnqgpdapb7p25l4h39g5q8p1qs";
837
837
-
})
838
838
-
(fetchurl {
839
839
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg";
840
840
-
sha256 = "02vsx9l8ahzykjw6psf8yd5grndk63x4rw0lc0rl0s9z203694j3";
841
841
-
})
842
842
-
(fetchurl {
843
843
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg";
844
844
-
sha256 = "1ipqwwfphj4ndi6krnbali0f3260bmdg0lb9w7w00k3z20gwpjgy";
845
845
-
})
846
846
-
(fetchurl {
847
847
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.0.0/system.buffers.4.0.0.nupkg";
848
848
-
sha256 = "19rn53vkzvd7j0mds1crnkiw246vxqf4crym67i0nlsg5p8p8y7f";
849
849
-
})
850
850
-
(fetchurl {
851
851
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.3.0/system.buffers.4.3.0.nupkg";
852
852
-
sha256 = "1x5m2z3x8s4d0z13l8j6jfbaqpwh8dwyg930pcg67gz88zchfhq8";
853
853
-
})
854
854
-
(fetchurl {
855
855
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.codedom/4.4.0/system.codedom.4.4.0.nupkg";
856
856
-
sha256 = "18cgw5fzhg4zbnzzgsban5rpv3zw5gq3npqmr1qp0j7w8ckamaxr";
857
857
-
})
858
858
-
(fetchurl {
859
859
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg";
860
860
-
sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z";
861
861
-
})
862
862
-
(fetchurl {
863
863
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.5.0/system.collections.immutable.1.5.0.nupkg";
864
864
-
sha256 = "1yn0g10x5lss68i5n5x9q9z1kbxcbblrwp51ph79cgbi01ga999q";
865
865
-
})
866
866
-
(fetchurl {
867
867
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.0.0/system.console.4.0.0.nupkg";
868
868
-
sha256 = "0fw0ap3c0svxjbkgr5yrkck36lbrijhsx48v53xkam5y6m0vh1s3";
869
869
-
})
870
870
-
(fetchurl {
871
871
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.3.0/system.console.4.3.0.nupkg";
872
872
-
sha256 = "0hyp57lqq986hnj7h017mz1qa1p3qqw3n98nxngdj947ck4mwmpd";
873
873
-
})
874
874
-
(fetchurl {
875
875
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg";
876
876
-
sha256 = "02az3f9n0sy9hpjqq05dkwa4d4bgyrs57b69byya20zydvyxxm9z";
877
877
-
})
878
878
-
(fetchurl {
879
879
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg";
880
880
-
sha256 = "1ww723ayg4ddwahaplscrf71688ibqzfld5chsgdnp5nwysl2r6r";
881
881
-
})
882
882
-
(fetchurl {
883
883
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg";
884
884
-
sha256 = "0rqi76pqplmk8lzqhwxkkn6ramk56bm66ijg3zki9gzaaqx7fbfk";
885
885
-
})
886
886
-
(fetchurl {
887
887
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.4.3.0.nupkg";
888
888
-
sha256 = "04ldc5xzk1s6xrf5jv3w99hs26z226j7zaiyln5sy1mlsdwf4j2f";
889
889
-
})
890
890
-
(fetchurl {
891
891
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.4.3.0.nupkg";
892
892
-
sha256 = "0nakc5w6lisd927b3rs26h6h02jc1bh15gq2gjf18ipg64f5k9f2";
893
893
-
})
894
894
-
(fetchurl {
895
895
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.textwritertracelistener/4.0.0/system.diagnostics.textwritertracelistener.4.0.0.nupkg";
896
896
-
sha256 = "1a4dsyxpl5vrf4p4rwff7q07kn115i00j09zgyx5dxx9bpg8mjr9";
897
897
-
})
898
898
-
(fetchurl {
899
899
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg";
900
900
-
sha256 = "0dwq0z7p3jpxp4y9x1k3pglrs572xx5dsp4nmnz5v5wr6a1kdc8l";
901
901
-
})
902
902
-
(fetchurl {
903
903
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg";
904
904
-
sha256 = "0lzdnq31spwv2xd9xkf0ph4zlg7bqifcvp1915jk1hb5fjjf1byp";
905
905
-
})
906
906
-
(fetchurl {
907
907
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg";
908
908
-
sha256 = "0zwc9qk2ig6h74dnn4hxlyhnfchp6yd6hqv39dy0dhp3xagwfqp3";
909
909
-
})
910
910
-
(fetchurl {
911
911
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg";
912
912
-
sha256 = "1criw17b7lf4qllmr0p5lpswdqxdmbzwwsm31ryvgrwiyljsr800";
913
913
-
})
914
914
-
(fetchurl {
915
915
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg";
916
916
-
sha256 = "04pycnih66s15rbwss94ylm0svfr276ym4w4w14bb9g56dk0wwyy";
917
917
-
})
918
918
-
(fetchurl {
919
919
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg";
920
920
-
sha256 = "1qfa54p7ab2himyry3lf0j85gpz3mx9yj0sy0v2j9i94ndvk1w7c";
921
921
-
})
922
922
-
(fetchurl {
923
923
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.extensions/4.0.1/system.globalization.extensions.4.0.1.nupkg";
924
924
-
sha256 = "0ibjk6rmn3hcvawcn60wq3zlv3yzmfm19p661a08g0y1cn6wjvpb";
925
925
-
})
926
926
-
(fetchurl {
927
927
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg";
928
928
-
sha256 = "17gqqkmf2drv7k5q66vfcg6y3krc51isx96fd5w0vv38vdrh04iw";
929
929
-
})
930
930
-
(fetchurl {
931
931
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg";
932
932
-
sha256 = "0drs586wimx7vzwqfdb72k640iz24645cwz053n1f08752bjkzq8";
933
933
-
})
934
934
-
(fetchurl {
935
935
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.3.0/system.io.4.3.0.nupkg";
936
936
-
sha256 = "1n3qypsgn18pg13vyjcnchz3zbfajdk6swl1wzf0hv6324v8xyd7";
937
937
-
})
938
938
-
(fetchurl {
939
939
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg";
940
940
-
sha256 = "1p4r4n4minxgir17xh7rwv503fj1zgnm1vb24and7v2n6id4ma61";
941
941
-
})
942
942
-
(fetchurl {
943
943
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg";
944
944
-
sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn";
945
945
-
})
946
946
-
(fetchurl {
947
947
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg";
948
948
-
sha256 = "1419wbklbn2vliwfy77p759k084h8jp9i3559shbhrzfxjr2fcv9";
949
949
-
})
950
950
-
(fetchurl {
951
951
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg";
952
952
-
sha256 = "10d25jxz29mlrqwwgmvz01kj222ccn7hyfrbpnfwczf3x50jxqzn";
953
953
-
})
954
954
-
(fetchurl {
955
955
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.memory/4.5.3/system.memory.4.5.3.nupkg";
956
956
-
sha256 = "1igqq2lqrijpbn66w1020cyyqiwy80i9fkqrmalamjmvmyg28p8m";
957
957
-
})
958
958
-
(fetchurl {
959
959
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg";
960
960
-
sha256 = "1zfrz4p3nmz3cnb0i8xwc76175328dfgrlmp3bcwvp5vplv3ncnz";
961
961
-
})
962
962
-
(fetchurl {
963
963
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.1.0/system.net.sockets.4.1.0.nupkg";
964
964
-
sha256 = "18gqm890rj9k5nd35xiv747hh11zzc8yx72y6pzr8xkp7fn9jjmg";
965
965
-
})
966
966
-
(fetchurl {
967
967
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg";
968
968
-
sha256 = "026ghgh25lw953aqd83npk856g4bwi6a8y7jc695qj8lb929yp5s";
969
969
-
})
970
970
-
(fetchurl {
971
971
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg";
972
972
-
sha256 = "1hrbq85s14x7ck6an570z8p7slprlsswxlydz0pdzfmnqwpv0qbi";
973
973
-
})
974
974
-
(fetchurl {
975
975
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.1.0/system.reflection.4.1.0.nupkg";
976
976
-
sha256 = "003bmllpdf35jsbbhgsi4a24rqprdhgjpi3d76jk7sgllbh6p1wj";
977
977
-
})
978
978
-
(fetchurl {
979
979
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.3.0/system.reflection.4.3.0.nupkg";
980
980
-
sha256 = "00f1n6r8z6zw3mfhrfg402s6fj95jj9d8z5s62kfmd7pdsnv39xi";
981
981
-
})
982
982
-
(fetchurl {
983
983
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg";
984
984
-
sha256 = "1kw4xsm093zd10jf3vjc2lxmv0zq6chi3g8rka8w0d3l3a5hh3ly";
985
985
-
})
986
986
-
(fetchurl {
987
987
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg";
988
988
-
sha256 = "1r0a1xhlrdr6kdhia9r6rcywds4r8wbk0jagsac6x3rc0kq5f1yi";
989
989
-
})
990
990
-
(fetchurl {
991
991
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg";
992
992
-
sha256 = "13y2gvadvzgv5hrizwd53xyciq88p8mpclyqfmikspij4pyb5328";
993
993
-
})
994
994
-
(fetchurl {
995
995
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.extensions/4.6.0-preview8.19364.1/system.resources.extensions.4.6.0-preview8.19364.1.nupkg";
996
996
-
sha256 = "0jh9ilbicmsngv77a4ayzs0n7s440ycdf726nbljw029gq4rzvqf";
997
997
-
})
998
998
-
(fetchurl {
999
999
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg";
1000
1000
-
sha256 = "1hjlz6rvr5c7qmvmbv1a338zqjl1dbj0qqidwv9z0ldy4jmg89cy";
1001
1001
-
})
1002
1002
-
(fetchurl {
1003
1003
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg";
1004
1004
-
sha256 = "1bi65kd8fps7gncs053pawc0j44pz4wcgdj3jcw7gpjr4j0zyxwi";
1005
1005
-
})
1006
1006
-
(fetchurl {
1007
1007
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg";
1008
1008
-
sha256 = "0f9l4pr5clyl9sb9ysswjfmx6v76dy6cwn79dw10v451gb2c9x4g";
1009
1009
-
})
1010
1010
-
(fetchurl {
1011
1011
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg";
1012
1012
-
sha256 = "05n73j0s3qgjnp5w2jxaacn93kpq14cldxncv15v04b3lla30mpr";
1013
1013
-
})
1014
1014
-
(fetchurl {
1015
1015
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.3.0/system.runtime.4.3.0.nupkg";
1016
1016
-
sha256 = "0cffdplihjrivvcayzvz32gmv7yissf2pmyaga4fw7g262rf5mxi";
1017
1017
-
})
1018
1018
-
(fetchurl {
1019
1019
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg";
1020
1020
-
sha256 = "00kzqs5d8gm1ppc13idybcdrr07yk2a7f5bdrb0mw7c1bafjp1px";
1021
1021
-
})
1022
1022
-
(fetchurl {
1023
1023
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg";
1024
1024
-
sha256 = "1876kwm4ziikya5s75sb1cp23qwdsd7xhlmlb9gaglibzwkd8b9d";
1025
1025
-
})
1026
1026
-
(fetchurl {
1027
1027
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg";
1028
1028
-
sha256 = "05pmsmrjmy3mk4r8xqihc3w7128d4qccjg6wkyd7zc2yq67w7xmg";
1029
1029
-
})
1030
1030
-
(fetchurl {
1031
1031
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg";
1032
1032
-
sha256 = "131108h1vnayxx6ms2axinja3sqckb1b8z9v8fjnaf9ix8zvmaxq";
1033
1033
-
})
1034
1034
-
(fetchurl {
1035
1035
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.loader/4.0.0/system.runtime.loader.4.0.0.nupkg";
1036
1036
-
sha256 = "1jw95ygcbhnlz3fw8krsmgi2kb6xzm8bq40xh59piig52c7cayaf";
1037
1037
-
})
1038
1038
-
(fetchurl {
1039
1039
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.0.1/system.runtime.numerics.4.0.1.nupkg";
1040
1040
-
sha256 = "0z3m39cx33dq72y4byv3hx499csr2v66cbx533i2444a8hv24zb8";
1041
1041
-
})
1042
1042
-
(fetchurl {
1043
1043
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg";
1044
1044
-
sha256 = "06i4k2ng909fvlq9dhglgyp0iv5vj6b42vqlsvk2gcn6ssgkq9ya";
1045
1045
-
})
1046
1046
-
(fetchurl {
1047
1047
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.formatters/4.3.0/system.runtime.serialization.formatters.4.3.0.nupkg";
1048
1048
-
sha256 = "1cf8y7vllfw08sxql8j62igi755s70pxzpsns1lvls00iw7svisk";
1049
1049
-
})
1050
1050
-
(fetchurl {
1051
1051
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.json/4.0.2/system.runtime.serialization.json.4.0.2.nupkg";
1052
1052
-
sha256 = "0l0rfxdw6vv3iy68dh6ppdn4jzxkrvphp11s80lm5g12yxlikjw8";
1053
1053
-
})
1054
1054
-
(fetchurl {
1055
1055
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg";
1056
1056
-
sha256 = "1mqwgsda61xm2p4chcniypnnrahh8l6j8c9j45jd2r0hmrvnsc4k";
1057
1057
-
})
1058
1058
-
(fetchurl {
1059
1059
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.3.0/system.runtime.serialization.primitives.4.3.0.nupkg";
1060
1060
-
sha256 = "1k5pmplsys171mdp7d5a02xcxfs6f91igifcm173kh6y8n6y0y5f";
1061
1061
-
})
1062
1062
-
(fetchurl {
1063
1063
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg";
1064
1064
-
sha256 = "19mwnihzks4l2q73bsg5ylbawxqcji3slzzp0v46v6xvvrq480wq";
1065
1065
-
})
1066
1066
-
(fetchurl {
1067
1067
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg";
1068
1068
-
sha256 = "1hjp789gif4607iv5702six5cbd61wc39ads1yfln0sdmv1m42i6";
1069
1069
-
})
1070
1070
-
(fetchurl {
1071
1071
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg";
1072
1072
-
sha256 = "04lfa74ll34fk2r42fkdldvcgjp27i3d5zbxx5bxx1dfpsqhkavv";
1073
1073
-
})
1074
1074
-
(fetchurl {
1075
1075
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg";
1076
1076
-
sha256 = "130qyk4r796vm8z5nlp49klb245pn1msmgmahwqxpcwr0kskmi46";
1077
1077
-
})
1078
1078
-
(fetchurl {
1079
1079
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg";
1080
1080
-
sha256 = "0958zmahjiz4i3wa4x149vz7n7xs81pn12522g54h1rzdszr1d57";
1081
1081
-
})
1082
1082
-
(fetchurl {
1083
1083
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg";
1084
1084
-
sha256 = "1icdqp1c8f7971h1vkls87m8bdxs7xqg4xs7ygi0x3n56pjbqfpi";
1085
1085
-
})
1086
1086
-
(fetchurl {
1087
1087
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg";
1088
1088
-
sha256 = "0kyqlrnc20syqlgaakjrhd7yi6jpdzsp2idyzgm3jr66h2saak6x";
1089
1089
-
})
1090
1090
-
(fetchurl {
1091
1091
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg";
1092
1092
-
sha256 = "02dsnjxw9bymk0a2qnnlavpi0jq8832dviblv5f9icmwldridc8y";
1093
1093
-
})
1094
1094
-
(fetchurl {
1095
1095
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg";
1096
1096
-
sha256 = "0p02s2k8gcx86ys67ydbgrlnp5q7f073jnlgpliqp4f7d2wiwszd";
1097
1097
-
})
1098
1098
-
(fetchurl {
1099
1099
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg";
1100
1100
-
sha256 = "0vnp7gacidqkd9p4zd2cl5457g91zs6kb3fjf7msmh6rpn9s7wxq";
1101
1101
-
})
1102
1102
-
(fetchurl {
1103
1103
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg";
1104
1104
-
sha256 = "0s42hnqsmczfym8vx6vqjh1pl4szwhjcy452l2z65ldkv41hk1gw";
1105
1105
-
})
1106
1106
-
(fetchurl {
1107
1107
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg";
1108
1108
-
sha256 = "0q829jqhv2sdggb3xjlbdp65g2670w9gw64q2irdzr47gl7zpzyl";
1109
1109
-
})
1110
1110
-
(fetchurl {
1111
1111
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg";
1112
1112
-
sha256 = "04fsaadvsnjz6jmf88n26md9zcmvwgn2dkwqkjvhf5apph8gi44g";
1113
1113
-
})
1114
1114
-
(fetchurl {
1115
1115
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg";
1116
1116
-
sha256 = "0ixii299wspn434ccjjv8pcvxww3qjl8257r0dx7myh816v3a9sz";
1117
1117
-
})
1118
1118
-
(fetchurl {
1119
1119
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg";
1120
1120
-
sha256 = "1s8s2mhzvlb7v36z96w5jf0hcbix5drjc647g03l9dnp7dzgbm03";
1121
1121
-
})
1122
1122
-
(fetchurl {
1123
1123
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg";
1124
1124
-
sha256 = "03gvdi1qk4kyws4sjfl5w3fy9qbrq0d0i72n7a8d59lchm6l9zjk";
1125
1125
-
})
1126
1126
-
(fetchurl {
1127
1127
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg";
1128
1128
-
sha256 = "0y0gw9q62dchzhk3fcdcdfhk6c5zr0a6rs34qfdbkgksnva10cm1";
1129
1129
-
})
1130
1130
-
(fetchurl {
1131
1131
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.dataflow/4.6.0/system.threading.tasks.dataflow.4.6.0.nupkg";
1132
1132
-
sha256 = "0ayk4qdl6nvq4w027xqj0r5m89m2isdqm6ndj6h7px526fg1skf8";
1133
1133
-
})
1134
1134
-
(fetchurl {
1135
1135
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.parallel/4.0.1/system.threading.tasks.parallel.4.0.1.nupkg";
1136
1136
-
sha256 = "00l76cv7yys3ilrpi32xrs8qk45gmliqvmw2w2zxg3h21y6r0xc0";
1137
1137
-
})
1138
1138
-
(fetchurl {
1139
1139
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg";
1140
1140
-
sha256 = "0ay1bjmyk0jv6plj9layh3nhr7lnl5a6gzlqi2pgqglb1s9j1x4s";
1141
1141
-
})
1142
1142
-
(fetchurl {
1143
1143
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg";
1144
1144
-
sha256 = "1ahzhk016anakja3c8nhqxi40nr4n2psm920gvfpjh4gbpglki9b";
1145
1145
-
})
1146
1146
-
(fetchurl {
1147
1147
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg";
1148
1148
-
sha256 = "04ijmcrb40x08br0fdpxmrm0fw2ahpiqjs9wmrqx38ngf96irb7l";
1149
1149
-
})
1150
1150
-
(fetchurl {
1151
1151
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg";
1152
1152
-
sha256 = "1dsj4s5jwjqix52sizyncvrv5p1h9cdnkh5c4a6407s3gkkh4gzw";
1153
1153
-
})
1154
1154
-
(fetchurl {
1155
1155
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg";
1156
1156
-
sha256 = "0987zp4nskf0dbsl3h4s5m1ianjcc398zmp2b98j4834c45jh0bm";
1157
1157
-
})
1158
1158
-
(fetchurl {
1159
1159
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg";
1160
1160
-
sha256 = "0hvn82chjynkixvvk9dy9djqvb0hlkbc2hy00gy27vjhd8i4iqkx";
1161
1161
-
})
1162
1162
-
(fetchurl {
1163
1163
-
url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/xlifftasks/1.0.0-beta.19252.1/xlifftasks.1.0.0-beta.19252.1.nupkg";
1164
1164
-
sha256 = "0249sfb30y9dgsfryaj8644qw3yc1xp2xzc08lsrwvmm8vjcvkri";
1165
1165
-
})
1166
1166
-
(fetchurl {
1167
1167
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg";
1168
1168
-
sha256 = "14kgk4j8hy50a2wdsg6zsyqxnjxjhwbxfhl0x9wvqzgl3zf2qhbs";
1169
1169
-
})
1170
1170
-
(fetchurl {
1171
1171
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg";
1172
1172
-
sha256 = "19wns10x30bnqyrzqjixhn92zyhwyaqiymrdj674044q4bardhs9";
1173
1173
-
})
1174
1174
-
(fetchurl {
1175
1175
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
1176
1176
-
sha256 = "16r149hajvr8ikyjbsw2m67yqfvxg6j1sb2slw9pzrly06mxmpks";
1177
1177
-
})
1178
1178
-
(fetchurl {
1179
1179
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
1180
1180
-
sha256 = "0ck0l1d5558rxh5rh1bynar18f1ah7789pbgizkls5wf9cxfbsk6";
1181
1181
-
})
1182
1182
-
(fetchurl {
1183
1183
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
1184
1184
-
sha256 = "0wgz0y2fm6xcnlmpl1zh5963ribjbnzr2l6prsw3xi7sbfyjyi8c";
1185
1185
-
})
1186
1186
-
(fetchurl {
1187
1187
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
1188
1188
-
sha256 = "1n0p46c8yix5kx37cgnqirl3r2rhkx3lz250gqv9xq1blvg1vvkq";
1189
1189
-
})
1190
1190
-
(fetchurl {
1191
1191
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg";
1192
1192
-
sha256 = "0qr13ykxj7zs7i8z0x63v8za2h33ndnvvw83wffp9xbb2fibj3gi";
1193
1193
-
})
1194
1194
-
(fetchurl {
1195
1195
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg";
1196
1196
-
sha256 = "0x7vzghvix9xjxr7ilak8935q84djpjdwhxqi655abmcdrz9lbcy";
1197
1197
-
})
1198
1198
-
(fetchurl {
1199
1199
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.buffers/4.4.0/system.buffers.4.4.0.nupkg";
1200
1200
-
sha256 = "1wwkbr6z7a89vv3m0d84ws2w639xs7r65433sjdi3z6m1jckfch8";
1201
1201
-
})
1202
1202
-
(fetchurl {
1203
1203
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.compression.zipfile/4.0.1/system.io.compression.zipfile.4.0.1.nupkg";
1204
1204
-
sha256 = "07f05lgmq2iwzby21gqsh0474ppw3q4n321qmf4n01dydvgladf6";
1205
1205
-
})
1206
1206
-
(fetchurl {
1207
1207
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg";
1208
1208
-
sha256 = "08fbnsgbbnfj7d6k5zdqvm3580iqwrq4qzbnyq6iw9g93kmlyh5p";
1209
1209
-
})
1210
1210
-
(fetchurl {
1211
1211
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg";
1212
1212
-
sha256 = "12mspig2fvzhvbdm22yk081lpn7rc45xwwricc5vnaszgjp83gns";
1213
1213
-
})
1214
1214
-
(fetchurl {
1215
1215
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg";
1216
1216
-
sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn";
1217
1217
-
})
1218
1218
-
(fetchurl {
1219
1219
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.net.http/4.1.0/system.net.http.4.1.0.nupkg";
1220
1220
-
sha256 = "0jzs6m3yfzvh4przqchhh7x98q61nmnch5inapk9i2ca6d9920rd";
1221
1221
-
})
1222
1222
-
(fetchurl {
1223
1223
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.net.http/4.3.0/system.net.http.4.3.0.nupkg";
1224
1224
-
sha256 = "0bmm1lv2z5fwhlxkdbn8nsa4j2yqsiqj4al8d1qpv3vvsyn9ns2m";
1225
1225
-
})
1226
1226
-
(fetchurl {
1227
1227
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg";
1228
1228
-
sha256 = "05jq9l0jr2nnk13nx8d85lfwpjimwpyknq8fnf7q7cyz3508dska";
1229
1229
-
})
1230
1230
-
(fetchurl {
1231
1231
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.security.cryptography.primitives/4.0.0/system.security.cryptography.primitives.4.0.0.nupkg";
1232
1232
-
sha256 = "1aw253xms9kx5a6vcy024cjlad46dwrh2jfwj6pg54l1p1jj86av";
1233
1233
-
})
1234
1234
-
(fetchurl {
1235
1235
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.1.1.0.nupkg";
1236
1236
-
sha256 = "1if1zj237dc1qwgb2i29143zpj0590m629n4arx6g0h29888p1ra";
1237
1237
-
})
1238
1238
-
(fetchurl {
1239
1239
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg";
1240
1240
-
sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z";
1241
1241
-
})
1242
1242
-
(fetchurl {
1243
1243
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.security.cryptography.csp/4.0.0/system.security.cryptography.csp.4.0.0.nupkg";
1244
1244
-
sha256 = "1mk44mnj7d4mmkrqqz7i396h4kjzzsfknm89hywpn64bimfvqzpn";
1245
1245
-
})
1246
1246
-
(fetchurl {
1247
1247
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg";
1248
1248
-
sha256 = "0958zmahjiz4i3wa4x149vz7n7xs81pn12522g54h1rzdszr1d57";
1249
1249
-
})
1250
1250
-
(fetchurl {
1251
1251
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/microsoft.build.nugetsdkresolver/5.2.0-rtm.6067/microsoft.build.nugetsdkresolver.5.2.0-rtm.6067.nupkg";
1252
1252
-
sha256 = "1rz2i4md7b8rlybb9s7416l0pr357f3ar149s6ipfq0xijn3xgmh";
1253
1253
-
})
1254
1254
-
(fetchurl {
1255
1255
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.build.tasks/5.2.0-rtm.6067/nuget.build.tasks.5.2.0-rtm.6067.nupkg";
1256
1256
-
sha256 = "1rim4zclm5xd63sdw8y7r1ssgxhnl8bs410gcz0nb1k839i05fns";
1257
1257
-
})
1258
1258
-
(fetchurl {
1259
1259
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.commands/5.2.0-rtm.6067/nuget.commands.5.2.0-rtm.6067.nupkg";
1260
1260
-
sha256 = "06vnphsmwnvcigwj37hy5abipjzwhnq61zw66cclwd6jjibb1kh9";
1261
1261
-
})
1262
1262
-
(fetchurl {
1263
1263
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.common/5.2.0-rtm.6067/nuget.common.5.2.0-rtm.6067.nupkg";
1264
1264
-
sha256 = "1ff5dhkv8v04n2kr5gyjjvki4mqsp1w4dwsgj7cvdcfcm8alba0m";
1265
1265
-
})
1266
1266
-
(fetchurl {
1267
1267
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.configuration/5.2.0-rtm.6067/nuget.configuration.5.2.0-rtm.6067.nupkg";
1268
1268
-
sha256 = "075mypb32i0d0x73rcr0di6pb0bhlp0izv3633ky64kddriajma1";
1269
1269
-
})
1270
1270
-
(fetchurl {
1271
1271
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.credentials/5.2.0-rtm.6067/nuget.credentials.5.2.0-rtm.6067.nupkg";
1272
1272
-
sha256 = "07g2na590sph9li5igww74i3gqyrj5cb6gsgjh54f1f4bs4x1c4k";
1273
1273
-
})
1274
1274
-
(fetchurl {
1275
1275
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.dependencyresolver.core/5.2.0-rtm.6067/nuget.dependencyresolver.core.5.2.0-rtm.6067.nupkg";
1276
1276
-
sha256 = "0iw1z2lascjjmdkk9nf2wqm5sj5nqjv4611xx29vlmp6cyhnpq4i";
1277
1277
-
})
1278
1278
-
(fetchurl {
1279
1279
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.frameworks/5.2.0-rtm.6067/nuget.frameworks.5.2.0-rtm.6067.nupkg";
1280
1280
-
sha256 = "1g1kcfqhxr1bhl3ksbdmz3rb9nq1qmkac1sijf9ng4gmr9fmprdm";
1281
1281
-
})
1282
1282
-
(fetchurl {
1283
1283
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.librarymodel/5.2.0-rtm.6067/nuget.librarymodel.5.2.0-rtm.6067.nupkg";
1284
1284
-
sha256 = "0dxvnspgkc1lcmilb67kkipg39ih34cmifs6jwk9kbrwf96z51q9";
1285
1285
-
})
1286
1286
-
(fetchurl {
1287
1287
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.packaging/5.2.0-rtm.6067/nuget.packaging.5.2.0-rtm.6067.nupkg";
1288
1288
-
sha256 = "16p5glvvpp5rw10ycbpyg39k4prir450l12r5frpm8qz0rdp3xig";
1289
1289
-
})
1290
1290
-
(fetchurl {
1291
1291
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.projectmodel/5.2.0-rtm.6067/nuget.projectmodel.5.2.0-rtm.6067.nupkg";
1292
1292
-
sha256 = "1s5950nbcsnfrpbaxdnl6cv1xbsa57fln04lhyrki536476a6wcn";
1293
1293
-
})
1294
1294
-
(fetchurl {
1295
1295
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.protocol/5.2.0-rtm.6067/nuget.protocol.5.2.0-rtm.6067.nupkg";
1296
1296
-
sha256 = "0fm3qgcdsy6dy6fih0n9a4w39mzdha4cz51gr9pp9g4nag34za2a";
1297
1297
-
})
1298
1298
-
(fetchurl {
1299
1299
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.versioning/5.2.0-rtm.6067/nuget.versioning.5.2.0-rtm.6067.nupkg";
1300
1300
-
sha256 = "04rr31ms95h7ymqxlalpv3xs48j8ng4ljfz5lmrfw7547rhcrj2h";
1301
1301
-
})
1302
1302
-
(fetchurl {
1303
1303
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.build.tasks/3.0.0-beta1-61516-01/microsoft.codeanalysis.build.tasks.3.0.0-beta1-61516-01.nupkg";
1304
1304
-
sha256 = "1cjpqbd4i0gxhh86nvamlpkisd1krcrya6riwjhghvpjph6115vp";
1305
1305
-
})
1306
1306
-
(fetchurl {
1307
1307
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.common/3.0.0-beta1-61516-01/microsoft.codeanalysis.common.3.0.0-beta1-61516-01.nupkg";
1308
1308
-
sha256 = "1qfm61yrsmihhir7n3hb5ccn1r50i39rv1g74880ma7ihjl1hz54";
1309
1309
-
})
1310
1310
-
(fetchurl {
1311
1311
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.csharp/3.0.0-beta1-61516-01/microsoft.codeanalysis.csharp.3.0.0-beta1-61516-01.nupkg";
1312
1312
-
sha256 = "0a7npkdw6s5jczw1lkm63x2bpz1z3ccid20h5nm6k78cv7sihm4h";
1313
1313
-
})
1314
1314
-
(fetchurl {
1315
1315
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.1.0.0-alpha-004.nupkg";
1316
1316
-
sha256 = "1qrpxhcx11v92lqwvrih88mlyfw2rkrsjqh7gl8c1h71vyppr3bp";
1317
1317
-
})
1318
1318
-
(fetchurl {
1319
1319
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies.net20/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.net20.1.0.0-alpha-004.nupkg";
1320
1320
-
sha256 = "18808v22l9rv8drb3xxwzmiv40mfbd6p16hhwlww05i7bkr6mcav";
1321
1321
-
})
1322
1322
-
(fetchurl {
1323
1323
-
url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies.net472/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.net472.1.0.0-alpha-004.nupkg";
1324
1324
-
sha256 = "08wa54dm7yskayzxivnwbm8sg1pf6ai8ccr64ixf9lyz3yw6y0nc";
1325
1325
-
})
1326
1326
-
]