cross compilation: remove emulation from ncftp

This commit is contained in:
Colin 2023-02-22 06:03:14 +00:00
parent 8ddfa91125
commit 03d7cf65a4

View File

@ -728,10 +728,11 @@ in
# nativeBuildInputs = orig.nativeBuildInputs ++ [ next.libkate next.cairo next.pango ];
# });
ncftp = prev.ncftp.override {
# fixes: "ar: No such file or directory"
inherit (emulated) stdenv;
};
ncftp = prev.ncftp.overrideAttrs (upstream: {
# fixes: "ar: command not found"
# `ar` is provided by bintools
nativeBuildInputs = upstream.nativeBuildInputs or [] ++ [ next.bintools ];
});
networkmanager-fortisslvpn = prev.networkmanager-fortisslvpn.overrideAttrs (orig: {
# fixes "gdbus-codegen: command not found"
nativeBuildInputs = orig.nativeBuildInputs ++ [ next.glib ];