Skip to content

Commit

Permalink
dotnet/combine-packages: don't inherit meta from cli
Browse files Browse the repository at this point in the history
  • Loading branch information
corngood committed Dec 10, 2024
1 parent 6e180e8 commit a5d767c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/development/compilers/dotnet/combine-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,14 @@ mkWrapper "sdk" (buildEnv {
);
};

inherit (cli) meta;
meta = {
description = "${cli.meta.description or "dotnet"} (combined)";
inherit (cli.meta)
homepage
license
mainProgram
maintainers
platforms
;
};
})

0 comments on commit a5d767c

Please sign in to comment.