From 2817885f015bec9fe61c699d3755a9a6c2cf7eac Mon Sep 17 00:00:00 2001 From: Bernardo Meurer Date: Mon, 4 Apr 2022 17:23:56 -0700 Subject: [PATCH] mosh: fix build on x86_64-linux --- pkgs/tools/networking/mosh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/mosh/default.nix b/pkgs/tools/networking/mosh/default.nix index 7823b7eb9096..8331e3686dc9 100644 --- a/pkgs/tools/networking/mosh/default.nix +++ b/pkgs/tools/networking/mosh/default.nix @@ -11,8 +11,8 @@ stdenv.mkDerivation rec { sha256 = "05hjhlp6lk8yjcy59zywpf0r6s0h0b9zxq0lw66dh9x8vxrhaq6s"; }; - nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf ]; - buildInputs = [ protobuf ncurses zlib openssl bash-completion perlPackages.perl ] + nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf perlPackages.perl ]; + buildInputs = [ protobuf ncurses zlib openssl bash-completion ] ++ lib.optional withUtempter libutempter; strictDeps = true;