Unverified Commit b052fd58 authored by Fernando Rodrigues's avatar Fernando Rodrigues
Browse files

fetchnextcloudapp: fix meta inheritance



Another edge case of #400458.

Reported-by: default avatarjopejoe1 <jopejoe1@missing.ninja>
Signed-off-by: default avatarFernando Rodrigues <alpha@sigmasquadron.net>
parent e353138f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;