about summary refs log tree commit diff
path: root/pkgs/tools/networking/mosh
diff options
context:
space:
mode:
authorsqualus <squalus@squalus.net>2022-04-03 23:24:17 -0700
committersqualus <squalus@squalus.net>2022-04-03 23:24:22 -0700
commit93dd7a21ae174695b6d55cbbdc0d9fb063eb8787 (patch)
tree3a8dd14521055024996a7aafd55b129a60321c22 /pkgs/tools/networking/mosh
parent0ae931fb87a4e8241c9c5233a4eacccfa00fd68b (diff)
mosh: support cross compile
Diffstat (limited to 'pkgs/tools/networking/mosh')
-rw-r--r--pkgs/tools/networking/mosh/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/networking/mosh/default.nix b/pkgs/tools/networking/mosh/default.nix
index e87b550aa6fe9..7823b7eb90963 100644
--- a/pkgs/tools/networking/mosh/default.nix
+++ b/pkgs/tools/networking/mosh/default.nix
@@ -11,11 +11,12 @@ stdenv.mkDerivation rec {
     sha256 = "05hjhlp6lk8yjcy59zywpf0r6s0h0b9zxq0lw66dh9x8vxrhaq6s";
   };
 
-  nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper ];
-  buildInputs = [ protobuf ncurses zlib openssl bash-completion ]
-    ++ (with perlPackages; [ perl IOTty ])
+  nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf ];
+  buildInputs = [ protobuf ncurses zlib openssl bash-completion perlPackages.perl ]
     ++ lib.optional withUtempter libutempter;
 
+  strictDeps = true;
+
   enableParallelBuilding = true;
 
   patches = [