Skip to content

Commit

Permalink
Merge pull request #86200 from jamesottaway/patch-1
Browse files Browse the repository at this point in the history
dotnetCorePackages: Fix `combinePackages` example
  • Loading branch information
SuperSandro2000 committed Mar 21, 2021
2 parents 17ef805 + 6dd40fc commit 99f6fd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/compilers/dotnet/combine-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 99f6fd4

Please sign in to comment.