From cb78371557f9f155c6ed5fc8e679e4f9df4fd497 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 19 Jul 2022 21:21:25 -0700 Subject: setserial: fix cross compilation The setserial derivation uses nroff at compile time, so groff should be in nativeBuildInputs rather than buildInputs. --- pkgs/tools/system/setserial/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs/tools/system/setserial') diff --git a/pkgs/tools/system/setserial/default.nix b/pkgs/tools/system/setserial/default.nix index da5d3b2a0d11..be4ffa3388e7 100644 --- a/pkgs/tools/system/setserial/default.nix +++ b/pkgs/tools/system/setserial/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "0jkrnn3i8gbsl48k3civjmvxyv9rbm1qjha2cf2macdc439qfi3y"; }; - buildInputs = [ groff ]; + nativeBuildInputs = [ groff ]; installFlags = [ "DESTDIR=$(out)" ]; -- cgit 1.4.1