Merge pull request #195933 from GaetanLepage/fix-invidious-quic

invidious: fix #195779 by disabling quic when building
main
Silvan Mosberger 2 years ago committed by GitHub
commit 6629f531c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      pkgs/servers/invidious/default.nix

@ -68,7 +68,14 @@ crystal.buildCrystalPackage rec {
shardsFile = ./shards.nix;
crystalBinaries.invidious = {
src = "src/invidious.cr";
options = [ "--release" "--progress" "--verbose" "--no-debug" "-Dskip_videojs_download" ];
options = [
"--release"
"--progress"
"--verbose"
"--no-debug"
"-Dskip_videojs_download"
"-Ddisable_quic"
];
};
postConfigure = ''

Loading…
Cancel
Save