pkgs.tests: Add fetcher tests so ofborg can run them
This commit is contained in:
parent
ced417eb72
commit
7195f7d5b9
2 changed files with 7 additions and 3 deletions
|
@ -27,6 +27,10 @@ with pkgs;
|
|||
cc-multilib-gcc = callPackage ./cc-wrapper/multilib.nix { stdenv = gccMultiStdenv; };
|
||||
cc-multilib-clang = callPackage ./cc-wrapper/multilib.nix { stdenv = clangMultiStdenv; };
|
||||
|
||||
fetchpatch = callPackages ../build-support/fetchpatch/tests.nix { };
|
||||
fetchgit = callPackages ../build-support/fetchgit/tests.nix { };
|
||||
fetchFirefoxAddon = callPackages ../build-support/fetchfirefoxaddon/tests.nix { };
|
||||
|
||||
install-shell-files = callPackage ./install-shell-files {};
|
||||
|
||||
kernel-config = callPackage ./kernel.nix {};
|
||||
|
|
|
@ -488,7 +488,7 @@ with pkgs;
|
|||
cacert = buildPackages.cacert;
|
||||
git-lfs = buildPackages.git-lfs;
|
||||
}) // { # fetchgit is a function, so we use // instead of passthru.
|
||||
tests = callPackages ../build-support/fetchgit/tests.nix {};
|
||||
tests = pkgs.tests.fetchgit;
|
||||
};
|
||||
|
||||
fetchgitLocal = callPackage ../build-support/fetchgitlocal { };
|
||||
|
@ -531,7 +531,7 @@ with pkgs;
|
|||
|
||||
fetchpatch = callPackage ../build-support/fetchpatch { }
|
||||
// {
|
||||
tests = callPackages ../build-support/fetchpatch/tests.nix { };
|
||||
tests = pkgs.tests.fetchpatch;
|
||||
};
|
||||
|
||||
fetchs3 = callPackage ../build-support/fetchs3 { };
|
||||
|
@ -549,7 +549,7 @@ with pkgs;
|
|||
|
||||
fetchFirefoxAddon = callPackage ../build-support/fetchfirefoxaddon { }
|
||||
// {
|
||||
tests = callPackages ../build-support/fetchfirefoxaddon/tests.nix { };
|
||||
tests = pkgs.tests.fetchFirefoxAddon;
|
||||
};
|
||||
|
||||
fetchNextcloudApp = callPackage ../build-support/fetchnextcloudapp {};
|
||||
|
|
Loading…
Reference in a new issue