Unverified Commit fc3e47d1 authored by Marti Serra's avatar Marti Serra Committed by GitHub
Browse files

tribler: fix , closes #375940 (#384197)



fixed tribler

Co-authored-by: default avatarMarti Serra <marti.serra@protonmail.com>
parent 64729d46
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -8,11 +8,16 @@
  libtorrent-rasterbar-1_2_x,
  qt5,
  nix-update-script,
  boost186,
}:

let
  # libtorrent-rasterbar-1_2_x requires python311
  python3 = python311;
  # libtorrent-rasterbar-1_2_x requires python311 and boost 1.86
  python3 = python311.override {
    packageOverrides = final: prev: {
      boost = boost186;
    };
  };
  libtorrent = (python3.pkgs.toPythonModule (libtorrent-rasterbar-1_2_x)).python;
in
stdenv.mkDerivation (finalAttrs: {