Unverified Commit 75df28e7 authored by Rick van Schijndel's avatar Rick van Schijndel Committed by GitHub
Browse files

conserver: fix cross compilation (#352378)

parents b92edf11 230e331c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -53,6 +53,13 @@ stdenv.mkDerivation rec {
  # Disabled due to exist upstream cases failing 8/15 tests
  doCheck = false;

  postPatch = ''
    # install -s calls the wrong strip program when cross compiling
    substituteInPlace \
      console/Makefile.in conserver/Makefile.in autologin/Makefile.in contrib/chat/Makefile.in \
      --replace-fail "@INSTALL_PROGRAM@ -s" "@INSTALL_PROGRAM@"
  '';

  meta = with lib; {
    homepage = "https://www.conserver.com/";
    description = "Application that allows multiple users to watch a serial console at the same time";