mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +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 longDescription == null then null else "longDescription"} = longDescription;
|
||||||
${if homepage == null then null else "homepage"} = homepage;
|
${if homepage == null then null else "homepage"} = homepage;
|
||||||
inherit maintainers teams;
|
inherit maintainers teams;
|
||||||
|
sourceProvenance = with lib.sourceTypes; [
|
||||||
|
fromSource
|
||||||
|
binaryBytecode # vendored deps, compiled vue templates, etc
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue