arion: use build makeWrapper instead of host one

This commit is contained in:
Rick van Schijndel
2022-08-14 00:10:00 +03:00
committed by Artturin
parent f993f699c7
commit a22312d5cd
@@ -3,6 +3,7 @@
, haskellPackages
, haskell
, runCommand
, buildPackages
}:
let
@@ -32,7 +33,7 @@ let
inherit (haskellPackages) arion-compose;
cabalOverrides = o: {
buildTools = (o.buildTools or []) ++ [pkgs.makeWrapper];
buildTools = (o.buildTools or []) ++ [buildPackages.makeWrapper];
passthru = (o.passthru or {}) // {
inherit eval build;
};