nextcloud: specify sourceProvenance for apps

Looks like most apps are built from tarballs that contain
compiled vue templates and vendored dependencies, so this
seems like a more accurate default.
This commit is contained in:
Arnout Engelen 2025-10-31 11:42:24 +01:00
parent 6a08e6bb4e
commit ef82ab6ef8
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -39,6 +39,10 @@ applyPatches {
${if longDescription == null then null else "longDescription"} = longDescription;
${if homepage == null then null else "homepage"} = homepage;
inherit maintainers teams;
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryBytecode # vendored deps, compiled vue templates, etc
];
};
};
prePatch = ''