Commit b9b7268e authored by Ilya Fedin's avatar Ilya Fedin Committed by github-actions[bot]
Browse files

kotatogram-desktop: fix dependency conditions

This returns Darwin build which stopped to happen since b7af891b.

(cherry picked from commit c953590c)
parent c8fadc3e
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -69,10 +69,14 @@ telegram-desktop.override {
      })
    ];

    buildInputs = (old.buildInputs or [ ]) ++ [
    buildInputs =
      (old.buildInputs or [ ])
      ++ [
        libopus
      ]
      ++ lib.optionals stdenv.hostPlatform.isLinux [
        alsa-lib
        jemalloc
      libopus
        libpulseaudio
      ];