mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
fetchnextcloudapp: fix meta inheritance
Another edge case of #400458. Reported-by: jopejoe1 <jopejoe1@missing.ninja> Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
description ? null,
|
||||
homepage ? null,
|
||||
maintainers ? [ ],
|
||||
teams ? [ ],
|
||||
unpack ? false, # whether to use fetchzip rather than fetchurl
|
||||
}:
|
||||
applyPatches (
|
||||
@@ -27,7 +28,7 @@ applyPatches (
|
||||
{
|
||||
license = lib.licenses.${license};
|
||||
longDescription = description;
|
||||
inherit homepage maintainers;
|
||||
inherit homepage maintainers teams;
|
||||
}
|
||||
// lib.optionalAttrs (description != null) {
|
||||
longDescription = description;
|
||||
|
||||
Reference in New Issue
Block a user