From ef82ab6ef896b43cda39a393f1297b82b2375595 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Fri, 31 Oct 2025 11:42:24 +0100 Subject: [PATCH] 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. --- pkgs/build-support/fetchnextcloudapp/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/build-support/fetchnextcloudapp/default.nix b/pkgs/build-support/fetchnextcloudapp/default.nix index 138ac8fb10cf..f24b4e44c07f 100644 --- a/pkgs/build-support/fetchnextcloudapp/default.nix +++ b/pkgs/build-support/fetchnextcloudapp/default.nix @@ -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 = ''