Skip to content

Commit

Permalink
Merge pull request #282015 from SuperSandro2000/callPackages
Browse files Browse the repository at this point in the history
 top-level: use callPackages where inheriting packages
  • Loading branch information
NickCao authored Jan 19, 2024
2 parents f2231bc + a276e8b commit d3ccd6d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ with pkgs;

fetchpijul = callPackage ../build-support/fetchpijul { };

inherit (callPackage ../build-support/node/fetch-yarn-deps { })
inherit (callPackages ../build-support/node/fetch-yarn-deps { })
prefetch-yarn-deps
fetchYarnDeps;

Expand Down Expand Up @@ -1918,7 +1918,7 @@ with pkgs;

immich-cli = callPackage ../tools/misc/immich-cli { };

inherit (callPackage ../tools/networking/ivpn/default.nix {}) ivpn ivpn-service;
inherit (callPackages ../tools/networking/ivpn/default.nix {}) ivpn ivpn-service;

jobber = callPackage ../tools/system/jobber { };

Expand Down Expand Up @@ -4403,7 +4403,7 @@ with pkgs;
buttercup-desktop = callPackage ../tools/security/buttercup-desktop { };

charles = charles4;
inherit (callPackage ../applications/networking/charles {})
inherit (callPackages ../applications/networking/charles {})
charles3
charles4
;
Expand Down Expand Up @@ -4756,7 +4756,7 @@ with pkgs;

copyright-update = callPackage ../tools/text/copyright-update { };

inherit (callPackage ../tools/misc/coreboot-utils { })
inherit (callPackages ../tools/misc/coreboot-utils { })
msrtool
cbmem
ifdtool
Expand Down Expand Up @@ -8467,7 +8467,7 @@ with pkgs;

gaphor = python3Packages.callPackage ../tools/misc/gaphor { };

inherit (callPackage ../tools/filesystems/garage {
inherit (callPackages ../tools/filesystems/garage {
inherit (darwin.apple_sdk.frameworks) Security;
})
garage
Expand Down Expand Up @@ -11201,7 +11201,7 @@ with pkgs;

grocy = callPackage ../servers/grocy { };

inherit (callPackage ../servers/nextcloud {})
inherit (callPackages ../servers/nextcloud {})
nextcloud26 nextcloud27 nextcloud28;

nextcloud26Packages = callPackage ../servers/nextcloud/packages {
Expand Down Expand Up @@ -11234,7 +11234,7 @@ with pkgs;

noip = callPackage ../tools/networking/noip { };

inherit (callPackage ../applications/networking/cluster/nomad { })
inherit (callPackages ../applications/networking/cluster/nomad { })
nomad
nomad_1_4
nomad_1_5
Expand Down

0 comments on commit d3ccd6d

Please sign in to comment.