mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
dotnet/wrapper: don't inherit meta from unwrapped
This commit is contained in:
parent
f3f887a69a
commit
6e180e8e5c
@ -22,7 +22,18 @@
|
||||
type: unwrapped:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "${unwrapped.pname}-wrapped";
|
||||
inherit (unwrapped) version meta;
|
||||
inherit (unwrapped) version;
|
||||
|
||||
meta = {
|
||||
description = "${unwrapped.meta.description or "dotnet"} (wrapper)";
|
||||
mainProgram = "dotnet";
|
||||
inherit (unwrapped.meta)
|
||||
homepage
|
||||
license
|
||||
maintainers
|
||||
platforms
|
||||
;
|
||||
};
|
||||
|
||||
src = unwrapped;
|
||||
dontUnpack = true;
|
||||
|
Loading…
Reference in New Issue
Block a user