Commit c953590c authored by Ilya Fedin's avatar Ilya Fedin
Browse files

kotatogram-desktop: fix dependency conditions

This returns Darwin build which stopped to happen since b7af891b.
parent 84017483
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
      ];