fetchNextcloudApp: add pkgs.test

This commit is contained in:
staticdev
2025-08-27 07:25:23 +02:00
parent 2196fed2b6
commit e27f6eba7c
2 changed files with 3 additions and 1 deletions

View File

@@ -48,7 +48,6 @@ applyPatches (
exit 1
fi
'';
# Optionally set name if appName and appVersion are provided
}
// lib.optionalAttrs (appName != null && appVersion != null) {
name = "nextcloud-app-${appName}-${appVersion}";

View File

@@ -131,6 +131,9 @@ with pkgs;
fetchDebianPatch = recurseIntoAttrs (callPackages ../build-support/fetchdebianpatch/tests.nix { });
fetchzip = recurseIntoAttrs (callPackages ../build-support/fetchzip/tests.nix { });
fetchgit = recurseIntoAttrs (callPackages ../build-support/fetchgit/tests.nix { });
fetchNextcloudApp = recurseIntoAttrs (
callPackages ../build-support/fetchnextcloudapp/tests.nix { }
);
fetchFromBitbucket = recurseIntoAttrs (callPackages ../build-support/fetchbitbucket/tests.nix { });
fetchFirefoxAddon = recurseIntoAttrs (
callPackages ../build-support/fetchfirefoxaddon/tests.nix { }