tcl.tclPackageHook: fix cross

+3 -3
+3 -3
pkgs/development/interpreters/tcl/generic.nix
··· 1 - { lib, stdenv, callPackage, makeSetupHook, makeWrapper 1 + { lib, stdenv, callPackage, makeSetupHook 2 2 3 3 # Version specific stuff 4 4 , release, version, src ··· 51 51 inherit release version; 52 52 libPrefix = "tcl${release}"; 53 53 libdir = "lib/${libPrefix}"; 54 - tclPackageHook = callPackage ({}: makeSetupHook { 54 + tclPackageHook = callPackage ({ buildPackages }: makeSetupHook { 55 55 name = "tcl-package-hook"; 56 - deps = [ makeWrapper ]; 56 + deps = [ buildPackages.makeWrapper ]; 57 57 } ./tcl-package-hook.sh) {}; 58 58 }; 59 59 };