mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03: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:
parent
e353138f86
commit
b052fd5843
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
description ? null,
|
description ? null,
|
||||||
homepage ? null,
|
homepage ? null,
|
||||||
maintainers ? [ ],
|
maintainers ? [ ],
|
||||||
|
teams ? [ ],
|
||||||
unpack ? false, # whether to use fetchzip rather than fetchurl
|
unpack ? false, # whether to use fetchzip rather than fetchurl
|
||||||
}:
|
}:
|
||||||
applyPatches (
|
applyPatches (
|
||||||
|
@ -27,7 +28,7 @@ applyPatches (
|
||||||
{
|
{
|
||||||
license = lib.licenses.${license};
|
license = lib.licenses.${license};
|
||||||
longDescription = description;
|
longDescription = description;
|
||||||
inherit homepage maintainers;
|
inherit homepage maintainers teams;
|
||||||
}
|
}
|
||||||
// lib.optionalAttrs (description != null) {
|
// lib.optionalAttrs (description != null) {
|
||||||
longDescription = description;
|
longDescription = description;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue