summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorwyvie <elijahrum@gmail.com>2014-09-23 06:07:06 +0200
committerDomen Kožar <domen@dev.si>2014-09-23 13:56:45 +0200
commit6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba (patch)
treee0658c9ddff6771331c33c6090faa068efad8b49 /pkgs
parent5c4362ae5aa95a04375243faabbc181891069452 (diff)
downloadnixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar.gz
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar.bz2
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar.lz
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar.xz
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.tar.zst
nixpkgs-6bd2f75f1c67d2f8cdfd1b953228408c6fc401ba.zip
Switched from import to callPackage
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 9648263ee52..5c715916c40 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3755,9 +3755,9 @@ let
   lua5 = lua5_2_compat;
   lua = lua5;
 
-  lua51Packages = recurseIntoAttrs (import ./lua-packages.nix pkgs lua5_1);
+  lua51Packages = recurseIntoAttrs (callPackage ./lua-packages.nix pkgs lua5_1);
 
-  lua52Packages = recurseIntoAttrs (import ./lua-packages.nix pkgs lua5_2);
+  lua52Packages = recurseIntoAttrs (callPackage ./lua-packages.nix pkgs lua5_2);
 
   luaPackages = lua52Packages;