lol

hci: Fix cross eval

+2 -2
+2 -2
pkgs/development/tools/continuous-integration/hci/default.nix
··· 1 1 { haskell, haskellPackages, lib, makeWrapper, runc, stdenv }: 2 2 let 3 - inherit (haskell.lib.compose) overrideCabal addBuildDepends justStaticExecutables; 3 + inherit (haskell.lib.compose) overrideCabal addBuildTools justStaticExecutables; 4 4 inherit (lib) makeBinPath; 5 5 bundledBins = lib.optional stdenv.isLinux runc; 6 6 ··· 15 15 makeWrapper $out/libexec/hci $out/bin/hci --prefix PATH : ${lib.escapeShellArg (makeBinPath bundledBins)} 16 16 ''; 17 17 }) 18 - (addBuildDepends [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli)); 18 + (addBuildTools [ makeWrapper ] (justStaticExecutables haskellPackages.hercules-ci-cli)); 19 19 in pkg // { 20 20 meta = pkg.meta // { 21 21 position = toString ./default.nix + ":1";