Merge pull request #167254 from lovesegfault/fix-mosh

mosh: fix build on x86_64-linux
This commit is contained in:
Bernardo Meurer 2022-04-04 18:36:31 -07:00 committed by GitHub
commit 4dddff0976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;