arion: use build makeWrapper instead of host one

This commit is contained in:
Rick van Schijndel 2022-07-14 20:51:37 +02:00 committed by Artturin
parent f993f699c7
commit a22312d5cd

View file

@ -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;
};