Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dotnet/wrapper: don't inherit meta from unwrapped
Browse files Browse the repository at this point in the history
corngood committed Dec 9, 2024
1 parent f3f887a commit 2024942
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/compilers/dotnet/wrapper.nix
Original file line number Diff line number Diff line change
@@ -22,7 +22,13 @@
type: unwrapped:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "${unwrapped.pname}-wrapped";
inherit (unwrapped) version meta;
inherit (unwrapped) version;

meta = {
description = "${unwrapped.meta.description} (wrapper)";
maintainers = with lib.maintainers; [ corngood ];
mainProgram = "dotnet";
};

src = unwrapped;
dontUnpack = true;

0 comments on commit 2024942

Please sign in to comment.