mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
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:
parent
6a08e6bb4e
commit
ef82ab6ef8
|
|
@ -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 = ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue