summary refs log tree commit diff
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2022-10-06 19:43:15 +0200
committerGitHub <noreply@github.com>2022-10-06 19:43:15 +0200
commit473e97e434340625b7d93a5222ebddcf9ba9f36d (patch)
treec60390bd7b1fa10f17bf09a9ef36a11783f0dd6a
parent38eb5ec7ba32815d206f4fedca661e3d50aacf98 (diff)
downloadnixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar.gz
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar.bz2
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar.lz
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar.xz
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.tar.zst
nixpkgs-473e97e434340625b7d93a5222ebddcf9ba9f36d.zip
pkgsMusl.mosh: fix build (#194120)
-rw-r--r--pkgs/tools/networking/mosh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/mosh/default.nix b/pkgs/tools/networking/mosh/default.nix
index 121ba4395b5..fa33d42c2fd 100644
--- a/pkgs/tools/networking/mosh/default.nix
+++ b/pkgs/tools/networking/mosh/default.nix
@@ -1,6 +1,6 @@
 { lib, stdenv, fetchurl, fetchpatch, zlib, protobuf, ncurses, pkg-config
 , makeWrapper, perl, openssl, autoreconfHook, openssh, bash-completion
-, withUtempter ? stdenv.isLinux, libutempter }:
+, withUtempter ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, libutempter }:
 
 stdenv.mkDerivation rec {
   pname = "mosh";