dotnetCorePackages: Fix combinePackages example

This commit is contained in:
James Ottaway 2020-04-28 21:58:35 +10:00 committed by James Ottaway
parent 94652b6a27
commit 6dd40fcf51

View file

@ -4,9 +4,9 @@ let cli = builtins.head packages;
in
assert lib.assertMsg ((builtins.length packages) != 0)
''You must include at least one package, e.g
`with dotnetCorePackages; combinePackages {
packages = [ sdk_3_0 aspnetcore_2_1 ];
};`'' ;
`with dotnetCorePackages; combinePackages [
sdk_3_0 aspnetcore_2_1
];`'' ;
buildEnv {
name = "dotnet-core-combined";
paths = packages;